body {
    /* Updated to use the correct background image path and file name */
    background-image: url('../images/bg.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    min-height: 100vh;
    /* Using Comic Sans as a friendly fallback, but the HTML uses Burbank/Comic Neue */
    font-family: 'Comic Sans MS', 'Comic Sans',  Arial, sans-serif;
    color: #ffffff;
    text-align: center;
}

h1 {
    font-size: 3em;
    margin-top: 50px;
}

form {
    margin-top: 20px;
}

input[type="password"] {
    padding: 10px;
    font-size: 1.2em;
    border: none;
    border-radius: 5px;
}

/* General button/submit styling inherited by the login form */
input[type="submit"], button[type="submit"] { 
    padding: 10px 20px;
    font-size: 1.2em;
    background-color: #ffcc00;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    color: #222; /* Ensure text is visible on the yellow button */
}

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

table {
    margin: 50px auto;
    border-collapse: collapse;
}

td {
    padding: 20px;
    text-align: center;
}

/* This style is overridden by .logo-container in the HTML files, but kept for general safety */
img {
    width: 150px;
    height: auto;
}

footer {
    margin-top: 50px;
    font-size: 1em;
}