.calculator-container {
    background-color: #fff; /* White background */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    max-width: 500px; /* Adjust as needed */
    width: 90%; /* Responsive width */
    margin: 20px auto; /* Center the calculator */
}

h1 {
    text-align: center;
	font-size: 32px;
    color: #333; /* Darker heading color */
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 8px;
    color: #555; /* Slightly darker label color */
}

input[type="number"] {
    width: calc(100% - 22px);
    padding: 12px;
    margin-bottom: 18px;
    border: 1px solid #ccc; /* Light gray border */
    border-radius: 5px;
    box-sizing: border-box;
    font-size: 16px;
}

button {
    background: linear-gradient(to right, #007bff, #0056b3); /* Blue gradient button */
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
    font-size: 16px;
    transition: background 0.3s ease;
}

button:hover {
    background: linear-gradient(to right, #0056b3, #007bff); /* Darker blue on hover */
}

.result {
    margin-top: 25px;
    font-weight: bold;
    color: #28a745; /* Green result color */
    text-align: center;
    font-size: 18px;
}

/* Responsive Design */
@media (max-width: 400px) { /* Adjust breakpoint as needed */
    .calculator-container {
        padding: 20px;
    }
    input[type="number"], button {
        font-size: 14px;
        padding: 10px;
    }
    .result {
        font-size: 16px;
    }
}