body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

header {
    background: #333;
    color: #fff;
    padding: 10px 0;
    text-align: center;
}

nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: #444; 
    color: #fff;
    padding: 10px 0;
    text-align: center;
    width: 100%;
}

.nav-container {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

nav a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    padding: 15px 20px;
    font-size: 18px; 
    display: block;
}

nav a:hover {
    text-decoration: underline;
}

.container {
    width: 80%;
    margin: auto;
    overflow: hidden;
}

section {
    background: #fff;
    padding: 20px;
    margin: 20px 0;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.table-container {
    width: 100%;
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

table tbody tr:hover{
    background-color: #f2f2f2; 
}

table tbody tr td {
    transition: background-color 0.3s ease;
}

th, td {
    padding: 10px;
    text-align: left;
    border: 1px solid #ddd;
}

.toggle-nav {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

.nav-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

@media (max-width: 768px) {
    .toggle-nav {
        display: block;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: #444;
        text-align: left;
    }

    .nav-links a {
        padding: 10px 20px;
        border-top: 1px solid #555;
    }

    .nav-links a:first-child {
        border-top: none;
    }

    .nav-links.show {
        display: flex;
    }

    .container {
        width: 95%;
        margin: auto;
    }

    #footer .logo-wrapper {
        width: 140px;
        height: 100px;
        margin: 10px 0;
    }

    nav a {
        margin: 0 10px;
    }
}

@media (max-width: 480px) {
    .toggle-nav {
        display: block;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: #444;
        text-align: left;
    }

    .nav-links a {
        padding: 10px 20px;
        border-top: 1px solid #555;
    }

    .nav-links a:first-child {
        border-top: none;
    }

    .nav-links.show {
        display: flex;
    }

    header h1 {
        font-size: 30px;
    }

    #footer .logo-wrapper {
        width: 100px;
        height: 80px;
    }

    nav a {
        display: block;
        margin: 5px 0;
    }

    #footer p {
        font-size: 12px;
    }
}

.committee-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 20px;
}

.committee-column {
    flex: 1 1 45%;
    margin: 10px;
    box-sizing: border-box;
}

.committee-column p {
    text-align: left;
}

#back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #444;
    color: white;
    text-align: center;
    padding: 10px;
    border-radius: 50%;
    font-size: 20px;
    text-decoration: none;
    display: none; /* Initially hidden */
    z-index: 1000;
}

#back-to-top:hover {
    background-color: #333;
    text-decoration: none;
}

#footer {
    background-color: #333;
    color: #fff;
    padding: 30px 0;
    text-align: center;
    margin-top: 20px;
}

#footer .logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

#footer .logo-wrapper {
    width: 300px;
    height: 200px;
    background-color: #fff;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    border: 1px solid #ccc;
}

#footer .logo {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

#footer p {
    margin-top: 10px;
    font-size: 14px;
    color: #ccc;
}

nav a {
    padding: 10px 15px; 
    font-size: 20px; 
}

#back-to-top {
    padding: 15px;
    font-size: 24px;
    bottom: 20px;
    right: 20px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}