/* Global Styles */
body {
    font-family: 'sans-serif', sans-serif;
    margin: 0;
    padding: 0;
    background-image: url('../Images/Main Content/Schedule/Schedule 1.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed; /* Optional, for parallax effect */
    color: #333;
}


.container {
    padding: 20px;
    text-align: center;
}

.section {
    background-size: cover;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    transition: transform 0.3s ease, background-color 0.3s ease;
    margin-top: 100px;
    background-color: #ffe5b4;
    color: black;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    color: black;
}

table th, table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #ddd;
    color: black;
}

table th {
    background-color: transparent;
    color: black;
}

footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 10px 0;
    transition: background-color 0.3s;
    position: fixed;
    width: 100%;
    bottom: 0;
    left: 0;
}