body {
    background-color: #FAD4A5;
    background-attachment: fixed;
    background-image: url("/static/background.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    color: #000;
    display: flex;
    flex-direction: column;
    font-family: Verdana, Arial, sans-serif;
    justify-content: space-between;
    margin: 0;
    min-height: 100vh;
    padding: 0;
}

header {
    background-color: rgba(204, 197, 0, 0.95);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.container {
    align-self: center;
    background-color: rgba(204, 197, 0, 0.95);
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    margin-bottom: 10px;
    margin-top: 50px;
    padding: 30px;
    width: 50%;
}

h1 {
    font-size: 2em;
    margin-bottom: 20px;
}

h2 {
    font-size: 1em;
    margin: 10px 0;
}

.day-name {
    font-weight: bold;
}

ul {
    list-style-type: none;
    padding-left: 0;
}

li {
    list-style: none;
    margin-top: 10px;
}

form {
    align-items: left;
    display: flex;
    flex-direction: column;
    margin-top: 20px;
}

.input-field {
    background-color: #F6ECDE;
    border-radius: 4px;
    border: 1px solid #4e5008;
    font-family: Verdana, Arial, sans-serif;
    margin-bottom: 10px;
    max-width: 400px;
    padding: 10px;
    transition: background-color 0.3s;
    width: 80%;
}

input[type="text"] {
    background-color: #F6ECDE;
    border-radius: 4px;
    border: 1px solid #4e5008;
    font-family: Verdana, Arial, sans-serif;
    margin-bottom: 10px;
    max-width: 400px;
    padding: 10px;
    transition: background-color 0.3s;
    width: 80%;
}

input[type="submit"],
.btn {
    background-color: #4e5008;
    border-radius: 4px;
    border: none;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    font-family: Verdana, Arial, sans-serif;
    font-size: 1em;
    margin-top: 10px;
    max-width: 300px;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    width: 100%;
}

input[type="submit"]:hover,
.btn:hover {
    background-color: #6f6b00;
}

footer {
    background-color: rgba(204, 197, 0, 0.95);
    bottom: 0;
    box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.2);
    margin-top: auto;
    padding: 5px 0;
    position: sticky;
    text-align: center;
    width: 100%;
}

.sr-only {
    border: 0;
    clip: rect(0, 0, 0, 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}

.error {
    color: red;
    font-size: 1.25em;
    margin-top: 20px;
}

/* Media query - smaller screens */
@media only screen and (max-width: 375px) {

    h1 {
        font-size: 1.25em;
    }

    h2 {
        font-size: 0.8em;
    }

    .container {
        margin-top: 10px;
    }

    input[type="submit"],
    .btn {
        font-size: 0.8em;
    }

    footer {
        bottom: 0;
        font-size: 0.75em;
        padding: 5px 0;
        position: fixed;
    }

    .error {
        font-size: 0.9em;
    }
}