/* General Styles */
body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 20px;
}

header {
    background-color: #333;
    color: white;
    padding: 10px 0;
    text-align: center;
}

h1, h2 {
    color: #333;
}

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

/* Form Styles */
form {
    margin-bottom: 20px;
}

label {
    display: block;
    margin: 10px 0 5px;
    font-weight: bold;
}

input[type="text"],
input[type="date"],
input[type="number"],
select {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-sizing: border-box; /* Include padding and border in the element's total width */
}
/* Button Styles */
button {
    background-color: #333;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 20px; /* Add margin to create space above the button */
}

button:hover {
    background-color: #555;
}

button:hover {
    background-color: #555;
}

/* Checkbox Styles */
input[type="checkbox"] {
    margin-right: 5px; /* Space between checkbox and label */
}

/* Checkbox Styles */
.checkbox-container {
    display: flex; /* Use flexbox to align items horizontally */
    align-items: center; /* Center align items vertically */
    margin-bottom: 10px; /* Space between checkboxes */
}

.checkbox-container label {
    margin-right: 10px; /* Space between label and checkbox */
    font-weight: normal; /* Normal weight for labels */
    font-size: 16px; /* Adjust font size if needed */
}

input[type="checkbox"] {
    cursor: pointer; /* Change cursor to pointer on hover */
}
/* Message Styles */
.error {
    color: red;
    margin-bottom: 20px;
}

.success {
    color: green;
    margin-bottom: 20px;
}

/* Responsive Styles */
@media (max-width: 600px) {
    .container {
        padding: 10px;
    }

    button {
        width: 100%;
    }
}