/* style.css */

/* General styling for the form */
.calculator-container {
    background: linear-gradient(to bottom right, #e0f7fa, #80deea);
    padding: 30px;
    border-radius: 12px;
    max-width: 450px;
    margin: 20px auto;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    font-family: 'Arial', sans-serif;
}

.calculator-container h2 {
    text-align: center;
    color: #00796b;
    margin-bottom: 25px;
    font-size: 24px;
}

.calculator-container label {
    display: block;
    font-weight: bold;
    margin-bottom: 8px;
    color: #004d40;
}

.calculator-container input {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 2px solid #00796b;
    border-radius: 6px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.calculator-container input:focus {
    border-color: #004d40;
    outline: none;
}

.btn-calculate {
    width: 100%;
    padding: 12px;
    background-color: #00796b;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s, transform 0.3s;
}

.btn-calculate:hover {
    background-color: #004d40;
    transform: scale(1.05);
}

#lease-form, #buy-form {
    display: none; /* Hide forms by default */
}

#result {
    margin-top: 20px;
    font-size: 20px;
    color: #004d40;
    text-align: center;
    background-color: #ffffff;
    border: 1px solid #00796b;
    border-radius: 6px;
    padding: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s;
}

#result p {
    margin: 0;
}

.calculator-container select {
    width: 100%;
    padding: 12px;
    border: 2px solid #00796b;
    border-radius: 6px;
    font-size: 16px;
    background-color: #ffffff;
    margin-bottom: 15px;
    transition: border-color 0.3s;
}

.calculator-container select:focus {
    border-color: #004d40;
    outline: none;
}
