/* Base styles */
body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
}

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

/* Header */
h2 {
    text-align: center;
    color: #333;
    font-size: 24px;
    margin-bottom: 20px;
}

/* Form Group */
.form-group {
    margin-bottom: 16px;
}

label {
    font-size: 16px;
    font-weight: bold;
    color: #333;
}

input, select {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    margin-top: 6px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: #f9f9f9;
    color: #333;
}

input[type="text"], input[type="date"], select {
    height: 40px;
}

/* Buttons */
button {
    width: 100%;
    padding: 12px;
    font-size: 18px;
    background-color: #42A5F5; /* Blue color */
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #1e88e5; /* Darker blue on hover */
}

button[type="submit"] {
    background-color: #42A5F5; /* Blue color */
}

button[type="submit"]:hover {
    background-color: #1e88e5; /* Darker blue on hover */
}

/* Alert messages */
.alert {
    padding: 10px;
    margin-bottom: 20px;
    border-radius: 5px;
    font-size: 16px;
    text-align: center;
}

.success {
    background-color: #4CAF50;
    color: white;
}

.error {
    background-color: #f44336;
    color: white;
}

/* Select dropdown style */
select {
    background-color: #f9f9f9;
    padding: 8px;
    font-size: 16px;
    border-radius: 5px;
    border: 1px solid #ddd;
}

select:focus {
    outline-color: #42A5F5;
}

/* Focused input styles */
input:focus, select:focus {
    border-color: #42A5F5;
    box-shadow: 0 0 5px rgba(66, 165, 245, 0.5);
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .container {
        padding: 10px;
    }

    button {
        padding: 10px;
        font-size: 16px;
    }
}
