/* styles.css */

/* General body styling */
body {
    font-family: Arial, sans-serif;
    padding: 20px;
    background-color: #f4f4f9;

}

/* Heading styling */
h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #333;

}

/* Form and filter styling */
.filters {
    margin-bottom: 20px;
    text-align: center;
}

.filters select, .filters button {
    padding: 10px;
    margin: 5px;
}

/* Error and success messages */
.error {
    color: red;
    text-align: center;
}

.success {
    color: green;
    text-align: center;
}

form {
    max-width: 400px;
    margin: 0 auto;
    background-color: white;
    padding: 60px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

label {
    font-size: 16px;
    margin-bottom: 5px;
    display: block;
}

input, select {
    width: 100%;
    padding: 10px;
    margin: 8px 0;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}

button {
    background-color: #007bff;
    border: none;
    padding: 12px;
    color: white;
    font-size: 16px;
    width: 100%;
    cursor: pointer;
    border-radius: 5px;
}

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