.calculator-container {
    width: 600px;
    margin: 0 auto;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 4x 8px rgba(0, 0, 0, 0.1);
}

h2 {
    text-align: center;
}

label {
    display: block;
    margin-bottom: 5px; /* Reduced margin to tighten spacing */
}

input[type="text"], select {
    width: 100%;
    padding: 20px; /* Match padding for consistency */
    margin-bottom: 15px; /* Ensure equal spacing between elements */
    border: 10px solid #ddd;
    border-radius: 4px;
    font-size: 16px; /* Set a comfortable font size */
    box-sizing: border-box; /* Ensures padding doesn’t expand width */
    color: #333; /* Text color for readability */
}

select {
    appearance: none; /* Remove default dropdown arrow styling for a cleaner look */
    background-color: white; /* Match input background */
    cursor: pointer;
}

button {
    width: 100%;
    padding: 20px;
    background-color: #87CEFA; /* Light blue color */
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #00BFFF; /* Darker shade of light blue for hover */
}

.result-item {
    margin-top: 50px;
    font-size: 20px;
}

.result-label {
    font-weight: bold;
}
  