body {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', 'Helvetica', sans-serif;
    background-color: #f8f9fa;
    color: #343a40;
    text-align: center;
    box-sizing: border-box;
}

header, footer {
    background-color: #061340;
    color: #F1D034;
    padding: 15px 20px;
}
#searchInput {
    padding: 8px;
    margin-top: 10px;
}

main {
    padding: 20px;
}

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

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

th {
    background-color: #061340;
    color: white;
}

/* New styles for the PDF link column */
td:nth-child(3) {
    text-align: center;
}

a {
    text-decoration: none;
    color: #305496;
    font-size: 12.0pt;
    display: block;
}


#event-image.enlarged {
    max-width: 100%;
    height: auto;
}

nav ul, footer ul {
    list-style: none;
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 0;
}

nav li, footer li {
    margin: 0 20px;
}

nav a, footer a {
    text-decoration: none;
    color: #F1D034;
    font-weight: 500;
    font-size: 0.9em;
    transition: color 0.3s ease-in-out;
}

nav a:hover, footer a:hover {
    color: #ffc107;
}

#quote, #events {
    padding: 30px 20px;
}

.box, .yellow-box {
    background-color: white;
    padding: 20px;
    margin: 20px;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.box p {
    font-size: 1.5em;
    font-weight: bold;
}

#events h2 {
    font-size: 1.5em;
    font-weight: bold;
}

#events ul {
    list-style: none;
    padding: 0;
}

#events ul li {
    margin: 15px 0;
    font-size: 1.1em;
}

img#event-image {
    max-width: 50%;
    height: auto;
    margin: 20px 0;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

footer {
    display: flex;
    flex-direction: column;
    align-items: center;
}

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

#contact p {
    margin: 10px 0;
    font-weight: bold;
}

#contact a {
    text-decoration: none;
    color: #F1D034;
    display: block;
    margin-top: 5px;
}

#contact a.email {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

#contact a.email img {
    width: 20px;
    height: 20px;
    margin-right: 5px;
}

#facebook-icon {
    width: 30px;
}

/* Media query for smaller screens */
@media only screen and (max-width: 600px) {
    nav ul, footer ul {
        flex-direction: column;
        align-items: center;
    }

    nav li, footer li {
        margin: 10px 0;
    }
}
