/*
 * Basic styling for the Western Bowl wait list application.
 * Feel free to adjust colours and fonts to match the
 * omahawesternbowl.com theme.  This stylesheet focuses on
 * readability and simplicity.
 */

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    color: #333;
}

header {
    background-color: #003366;
    color: white;
    padding: 1rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

header .logo img {
    max-height: 60px;
    margin-bottom: 0.5rem;
}

h1 {
    margin: 0;
    font-size: 1.8rem;
}

main {
    max-width: 800px;
    margin: 0 auto;
    padding: 1rem;
}

.alert {
    padding: 0.5rem;
    margin-bottom: 1rem;
    border-radius: 4px;
}

.alert.error {
    background-color: #f8d7da;
    color: #842029;
    border: 1px solid #f5c2c7;
}

.alert.success {
    background-color: #d1e7dd;
    color: #0f5132;
    border: 1px solid #badbcc;
}

.add‑form, .waitlist {
    margin-bottom: 2rem;
}

.field {
    margin-bottom: 1rem;
}

.field label {
    display: block;
    margin-bottom: 0.25rem;
}

.field input {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

button[type="submit"] {
    background-color: #e67e22; /* orange */
    color: white;
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
}

button[type="submit"]:hover {
    background-color: #d35400;
}

table {
    width: 100%;
    border-collapse: collapse;
}

table th, table td {
    padding: 0.5rem;
    border-bottom: 1px solid #ddd;
    text-align: left;
}

table th {
    background-color: #003366;
    color: white;
}

footer {
    text-align: center;
    padding: 1rem;
    background-color: #003366;
    color: white;
}