/* Global Styles */
body {
    font-family: Arial, sans-serif;
    background-color: #f9f9f9;
    margin: 0;
    padding: 0;
    color: #333;
}

.container {
    max-width: 800px;
    margin: 50px auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

h1 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 20px;
    color: #007bff;
}

form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

label {
    font-size: 1.1rem;
    font-weight: bold;
}

select, button {
    padding: 10px;
    font-size: 1rem;
    border-radius: 5px;
    border: 1px solid #ccc;
}

button {
    background-color: #007bff;
    color: white;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #0056b3;
}

#results {
    margin-top: 20px;
}

#disclaimer {
    margin-top: 40px;
    padding: 20px;
    background-color: #f1f1f1;
    border-radius: 8px;
    font-size: 0.9rem;
}

#disclaimer p {
    margin-bottom: 10px;
    color: #666;
}

#disclaimer a {
    color: #007bff;
    text-decoration: none;
}

#disclaimer a:hover {
    text-decoration: underline;
}

hr {
    border: none;
    border-top: 1px solid #ddd;
    margin: 20px 0;
}

.error {
            color: red;
            font-weight: bold;
        }
        .container {
            max-width: 600px;
            margin: 2rem auto;
            padding: 1rem;
            font-family: sans-serif;
        }
        #results p {
            margin: 0.5rem 0;
        }
