body, div, input, li, p, span, td, textarea {
    font-family: arial, helvetica, sans-serif;
    font-size: 16px;
}

 .calculator-container {
    background-color: #adcfdc;
    width: 90%;
    max-width: 600px;
    margin: 40px auto;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 15px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid #333;
    background: linear-gradient(to right, #f8f9fa, #e0eafc);
    padding: 20px;
    border-radius: 10px
}

.input-container {
    display: flex;
    justify-content: center; /* Align items in the center horizontally */
    align-items: center;
    margin-bottom: 10px;
}

.input-container label {
    width: 45%; /* Reduce the width of the label */
    text-align: right;
    margin-right: 5%; /* Add margin to separate label from input */
}

.input-container input, .input-container select {
    width: 30%; /* Increase the width of the input field */
    padding: 5px;
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    border: 1px solid #cfd1d8;
    border-radius: 3px;
    outline: none;
}

.input-container input::placeholder, .input-container select::placeholder {
    font-size: 0.8em; /* Reduce the size of the placeholder text */
}

#button-container {
    display: flex;
    justify-content: center; /* Align buttons to the center */
    margin-top: 20px;
}

#button-container button {
    padding: 10px;
    border: 0;
    color:#fff;
    font-size:16px;
    background:#084288;
    border-radius: 3px;
    margin: 0 10px; /* Add horizontal margin to the buttons */
}

#button-container button:hover {
    background-color: #434c6d;
}

#result {
    text-align: center;
    margin-top: 20px;
}

.help-icon {
    display: inline-block;
    position: relative;
    cursor: help;
}

.help-icon:before {
    content: '?';
    display: inline-block;
    width: 20px;
    height: 20px;
    text-align: center;
    background: #084288;
    color: #fff;
    border-radius: 50%;
    line-height: 20px;
    font-weight: bold;
}

.help-icon:hover + .disclaimer {
    display: block;
}

.disclaimer {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    border: 1px solid #ccc;
    padding: 15px;
    width: 300px;
    z-index: 1;
    left: 50%;
    transform: translateX(-50%); /* Centers the tooltip */
}

