body {
    font-family: Arial, sans-serif;
    background-color: #ffffff; /* White background */
    color: #003366; /* Blue text color */
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

h1 {
    text-align: center;
    margin: 20px;
    color: #0056b3; /* Dark blue for headers */
}

.container {
    width: 90%;
    max-width: 900px;
    margin: auto;
    padding: 20px;
    background-color: #f8f9fa; /* Light gray container background */
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
}

.form-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 10px;
}

label {
    margin-right: 10px;
    flex: 1 1 100%;
    text-align: left;
    color: #003366; /* Blue label text */
}

input, select {
    flex: 1 1 100%;
    margin-bottom: 10px;
    padding: 8px;
    border: 1px solid #007bff; /* Blue border */
    border-radius: 5px;
    background-color: #ffffff; /* White background for inputs */
    color: #003366; /* Blue text for inputs */
}

input:focus, select:focus {
    outline: none;
    border-color: #0056b3; /* Darker blue for focused inputs */
    box-shadow: 0 0 4px rgba(0, 123, 255, 0.5); /* Subtle blue glow */
}

button {
    padding: 10px;
    background-color: #007bff; /* Blue button background */
    color: white; /* White text */
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #0056b3; /* Darker blue on hover */
}

button.form-button {
    width: auto;
    min-width: 120px; /* Ensure consistent button sizes */
}

button.delete-button {
    background-color: #dc3545; /* Red for delete button */
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    padding: 5px 10px;
    transition: background-color 0.3s ease;
}

button.delete-button:hover {
    background-color: #c82333; /* Darker red on hover */
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
}

th, td {
    padding: 10px;
    text-align: left;
    border: 1px solid #ddd;
}

th {
    background-color: #007bff; /* Blue header background */
    color: white; /* White header text */
}

tr:nth-child(even) {
    background-color: #f2f2f2; /* Light gray for even rows */
}

tr:nth-child(odd) {
    background-color: #ffffff; /* White for odd rows */
}

@media (min-width: 768px) {
    .form-row {
        flex-wrap: nowrap;
    }

    label, input, select, button {
        flex: 1 1 auto;
        margin: 5px;
    }
}