/* Global styles for body */
body {
    font-family: 'Roboto', Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #E5E5E5;
    color: #333;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

/* Page heading */
h1 {
    font-size: 1.8em;
    color: #8B0000;
    margin-bottom: 20px;
    text-align: center;
}

/* Form container */
form {
    background-color: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    width: 90%;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Form label */
form label {
    font-weight: bold;
    font-size: 14px;
    display: block;
}

/* Input and textarea */
form input, form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 8px;
    background-color: #f8f8f8;
    font-size: 14px;
}

textarea {
    resize: none;
}

/* Submit button */
button[type="submit"] {
    width: 100%;
    background-color: #8B0000;
    color: white;
    border: none;
    padding: 12px;
    font-size: 16px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

button[type="submit"]:hover {
    background-color: #6a0000;
}

/* Table styling */
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

table thead {
    background-color: #8B0000;
    color: white;
}

table th, table td {
    padding: 12px;
    text-align: center;
    border-bottom: 1px solid #ddd;
    font-size: 14px;
}

table td input[type="text"], table td textarea {
    width: 90%; /* Ensure inputs fit inside the table */
    font-size: 13px;
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
}

table tr:nth-child(even) {
    background-color: #f9f9f9;
}

table tr:hover {
    background-color: #f1f1f1;
}

table th {
    font-weight: bold;
    text-transform: uppercase;
}

/* Checkbox styling */
.checkbox-group {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.checkbox-group input[type="checkbox"] {
    transform: scale(1.2);
    cursor: pointer;
}

.menu-item {
    margin:10px;
    margin-right:auto;
    background-color: #b91a1a;
    color: white;
    padding: 20px;
    text-align: center;
    border-radius: 10px;
    text-decoration: none;
    font-size: 1.2em;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s, background-color 0.2s;
}

.menu-item:hover {
    background-color: #484848;
    transform: translateY(-5px);
}
