body {
    margin: 0;
    padding: 0;
    background-color: #f5f5ef !important;
}

p {
    font-family: Arial, Helvetica, sans-serif;
    color: #572a17;
}

tr {
    font-family: Arial, Helvetica, sans-serif;
    color: #572a17;
}
i {
    font-family: Arial, Helvetica, sans-serif;
    color: #572a17;
}
h1 {
    font-family: Arial, Helvetica, sans-serif;
    color: #572a17;
}
h2 {
    font-family: Arial, Helvetica, sans-serif !important;
    color: #572a17 !important;
}
    .logo {
    float: left; /* logo at the left of the page */
}
form {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    width: 100%;
}

label {
    display: block;
    margin-bottom: 5px;
    font-family: 'Verdana', sans-serif; /* Change this to your desired font */
    font-size: 16px; /* Optional: Change the font size */
    color: #555; /* Optional: Change the font color */
}

input, textarea, button {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

button {
    background-color: #4CAF50;
    color: white;
    border: none;
    cursor: pointer;
}

    button:hover {
        background-color: #45a049;
    }

#confirmationMessage {
    text-align: center;
    margin-top: 20px;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 0 auto;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

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

th {
    background-color: #4CAF50;
    color: white;
}

tr:nth-child(even) {
    background-color: #f2f2f2;
}

tr:hover {
    background-color: #f1f1f1;
}

p {
    font-family: Arial;
}

.p1 {
    font-family: Arial;
    float: left;
}

.p2 {
    font-family: Arial;
    float: center;
}

/* ~~ Top Navigation Bar ~~ */

@media screen and (min-width: 768px) {
    #navigation-container {
        width: 62.5vw;
        margin: 0 auto;
        height: 7vh;
    }
}

.navigation-bar {
    background-color: #f5f5ef;
    height: 70px;
    width: 100%;
    text-align: center;
}

@media screen and (min-width: 768px) {
    .navigation-bar img {
        float: left;
    }
}

.navigation-bar ul {
    padding: 0px;
    margin: 0px;
    text-align: center; /* makes a list of buttons, without this the buttons wont work. VERY IMPORTANT!! */
    display: inline-block;
    vertical-align: top;
}

.navigation-bar li {
    list-style-type: none;
    padding: 0px;
    height: 24vh; /* buttons */
    margin-top: 4px;
    margin-bottom: 4px;
    display: inline;
}

    .navigation-bar li a {
        color: #572a17;
        font-size: 16px;
        font-family: "Trebuchet MS", Arial, Helvetica, sans-serif; /* for the active button */
        text-decoration: none;
        line-height: 70px;
        padding: 5px 15px;
        opacity: 0.7;
    }

        .navigation-bar li a:hover:not(.active) {
            background-color: #7b7b78;
            color: white;
        }

.active {
    background-color: #c5c5c1;
    color: #c31e00 !important; /* these two lines are active colours, so if you're on the homepage then the home button will be highlighted. */
}

#menu {
    float: right;
}
    /* Container holding the image and the text */
.container {
    display: flex;
    align-items: center;
    justify-content: center
}

.bottom-left {
    position: absolute;
    bottom: 8px;
    left: 16px;
}

.top-left {
    position: absolute;
    top: 8px;
    left: 16px;
}

.top-right {
    position: absolute;
    top: 8px;
    right: 16px;
}

.bottom-right {
    position: absolute;
    bottom: 8px;
    right: 16px;
}

.centered {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font: Arial !important;
}
img {
    max-width: 100%;
    max-height: 100%;
}

.text {
    font-size: 20px;
    padding-left: 20px;
    padding-top: 20%;
    float: left;
}

.image img {
    width: 100%;
    height: 100%;
}

.image {
    position: relative;
}

    .image figcaption {
        position: absolute;
        top: 50%;
        bottom: 50%;
        left: 40%;
    }