/* Styling for the 401k Contribution Calculator */
body {
    font-family: 'Arial', sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 20px;
}

#calculator-container {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin: 40px auto;
}

#calculator-container h1 {
    color: #333;
}

#calculator-container p {
    color: #666;
}

#contribution-form {
    margin-top: 20px;
}

#contribution-form label {
    display: block;
    margin-top: 10px;
}

#contribution-form input[type='text'],
#contribution-form input[type='number'] {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

#contribution-form button {
    background-color: #5cb85c;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    margin-top: 20px;
    cursor: pointer;
}

#contribution-form button:hover {
    background-color: #4cae4c;
}

#result-container {
    margin-top: 20px;
    padding: 10px;
    background-color: #dff0d8;
    color: #3c763d;
    border: 1px solid #d6e9c6;
    border-radius: 4px;
    display: none;
}
