body {
    font-family: Arial, sans-serif;
    background-color: #121212;
    color: white;
    margin: 0;
    padding: 0;
        background: linear-gradient(to right, #21c6d77a, #007ec5);
}




.container {
    text-align: center;
    padding: 20px;
}

h1, h2 {
    color: #FF6347;
    font-size: 2em;
}

.tabs {
    display: flex;
    flex-wrap: wrap; /* Allow wrapping of tabs */
    justify-content: center;
    margin-top: 20px;
}

.tab-button {
    background-color: #333;
    color: #ccc;
    border: 1px solid #444;
    padding: 10px 20px;
    margin: 5px;
    font-size: 1em;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.tab-button:hover {
    background-color: #FF6347;
    color: white;
}

.tab-button.active {
    background-color: #b22222; /* Dark red for active tab */
    color: white;
}

/* Mobile View: Stack tabs in 2 rows */
@media (max-width: 768px) {
    .tabs {
        flex-direction: row;
        justify-content: center;
    }

    .tab-button {
        width: 45%; /* Make each tab take up 45% of the width */
        margin: 5px; /* Add margin between tabs */
    }

    /* Specifically make 2 rows for mobile view */
    .tab-button:nth-child(n+5) {
        margin-top: 10px; /* Add some space for the second row */
    }
}

/* Desktop View: Keep tabs horizontal */
@media (min-width: 769px) {
    .tabs {
        flex-direction: row;  /* Align tabs horizontally */
        justify-content: center;
    }

    .tab-button {
        width: auto; /* Remove full width for desktop */
        max-width: none;
    }
}

.schedule-list {
    display: flex;
    flex-wrap: wrap;  /* Allow the items to wrap into two rows */
    gap: 20px;  /* Adds space between items */
    justify-content: space-between;  /* Space items evenly */
}

.schedule-item {
    display: flex;
    flex-direction: row; /* Image and info side by side */
    width: 45%;  /* Adjust width to fit two items per row */
    border: 1px solid #444;
    padding: 10px;
    background-color: #222;
    border-radius: 5px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.schedule-item:hover {
    transform: scale(1.05); /* Slightly enlarge the item when hovered */
}

.schedule-image {
    width: 30%;  /* Image takes 30% of the space */
    margin-right: 10px;  /* Space between image and text */
}

.schedule-image img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

.schedule-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 70%;  /* Info takes 70% of the space */
}

.show-name {
    font-size: 1.2em;
    color: #FF6347;
    margin-bottom: 5px;
}

.show-time {
    font-size: 1em;
    color: #ccc;
}

/* Modal Styles */
.modal {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 1; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Black w/ opacity */
}

.modal-content {
    background-color: #222;
    margin: 10% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 600px;
    border-radius: 5px;
}

.modal-body {
    display: flex;
    flex-direction: row;
}

.modal-image {
    width: 30%;
    margin-right: 10px;
}

.modal-image img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

.modal-info {
    width: 70%;
}

.modal-info div {
    margin-bottom: 10px;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: white;
    text-decoration: none;
    cursor: pointer;

/* Mobile View */


}






@media (max-width:500px) {
    .schedule-item {
        width: 100%; /* Full width on smaller screens */
        flex-direction: column; /* Stack image and info vertically */
    }

    .schedule-image {
        width: 100%; /* Image will take full width in mobile view */
        margin-right: 0;
        margin-bottom: 10px;  /* Space between image and info */
    }

    .schedule-info {
        width: 100%; /* Info will take full width in mobile view */
    }

    .modal-content {
        width: 90%; /* Modal width will be 90% of the screen */
    }






