* Global styles */
body {
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
    margin: 0;
    padding: 0;
}

.container {
    background-color: #fff;
    max-width: 400px;
    margin: 20px auto;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center; /* Align content to the right */
}

/* Calculator-specific styles */
.calculator {
    text-align: left;
}

h2 {
    color: #ff928a; /* Title text color */
}
label,
input,
button,
select {
    display: block;
    margin: 10px auto;
    width: 80%; /* Adjust width to your preference */
    padding: 10px;
    font-size: 16px;
}

/* Apply the color #ff928a to the button */
button {
    background-color: #ff928a; /* Button background color */
    border: none;
    cursor: pointer;
    color: #fff; /* Button text color */
    transition: background-color 0.3s ease;
}

/* Adjust button background color on hover */
button:hover {
    background-color: #ff704f; /* Button background color on hover */
}

#result {
    margin-top: 20px;
    font-weight: bold;
}