#schedule {
    background-color: rgb(255, 255, 255);

    /* background: url("/static/img/scheduleBg.png") no-repeat center center/cover; */
    min-height: 810px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-bottom: 120px;
    padding-top: 40px;
}
.logo-wrapper {
    justify-content: center;
    display: flex;
    margin-top: 30px;
}
.band_logo {
    position: relative;
    margin: 50px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#schedule img {
    width: 330px;         /* Adjust size as needed */
    z-index: 2;
    /* max-width: 310px; */
    height: auto;
}

.event {
    /* display: flex;
    justify-content: space-between;
    padding: 15px 20px;
    width: 80%;
    max-width: 600px;
    border-radius: 5px;
    font-weight: bold; */

    /* border-top: 1px solid #000000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    margin: 10px 0;
    color: rgb(0, 0, 0);
    border-bottom: 1px solid #000000; */
    /* border: 1px solid rgb(72, 5, 5); */
    display: grid;
    grid-template-columns: 60px 180px 1fr auto;
    align-items: center;
    gap: 20px;
    padding: 20px;
    margin: 10px 0;
    color: #000;
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
}
.date {
    /* display: flex;
    flex-direction: column;
    align-items: center;
    font-weight: bold;
    margin-right: 95px; */
    /* flex: 0 0 60px; */
    text-align: center;
    font-size: 37px;
    font-weight: bold;
    
}

.date .day {
    font-size: 37px;
    line-height: 1.1;
}
  
/*.date {*/
/*    font-size: 14px;*/
/*}*/
.month{
    font-size: 14px;
}
.location {
    /* margin-right: 95px;
    flex: 1; */
    font-size: 25px;
    font-weight: 600;
    /* text-align: center; */
}

.time {
    white-space: nowrap;
    /* text-align: right;
    margin-left: 95px; */
    font-size: 19px;
}
.event-title {
    font-size: 22px;
    font-weight: normal;
    color: #333;
}
.event-container {
    /* max-width: 600px; */
    /* display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px; */
    margin-top: 20px;
    width: 1543px;
    /* margin: 0 auto;
    padding-top: 400px;  */
}

#loadMoreBtn {
    margin: 30px;
    display: block;
    padding: 10px 20px;
    font-size: 2rem;
    border: none;
    background-color: #8B0000;
    color: white;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s;
}

#loadMoreBtn:hover {
    background-color: grey;
    transition: width 0.4s ease-in-out;

}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    max-width: 100%;
    margin: 0 auto; 
    /* display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 0;
    width: 100%; */
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.latest {
    /* background: url("/static/img/scheduleBg.png") no-repeat center center/cover; */
    /* font-size: 50px;
    text-align: center;
    padding: 0px 500px;
    background-color: rgb(255, 255, 255);
    color: #8B0000; */
    font-size: 50px;
    text-align: center;
    /*padding: 40px 20px;*/
    background-color: rgb(255, 255, 255);
    color: #8B0000;
    max-width: 1000px;
    margin: 0 auto;
    width: 100%;
}

.latest a {
    font-size: 18px;
    padding: 20px 40px;
    color: white;
    background-color: #8B0000;
    border-radius: 0px 0px 0px 0px;
    text-decoration: none;
}

.mas_container {
    margin: 20px 0px 71px 0px;
}

/* .latest-release {
    width: 100%;
    max-width: 640px;
    aspect-ratio: 16 / 9;
    border: none;
} */

@media (max-width: 1060px) {
    .event-container {
        max-width: 848px;
    }

    .event {
        display: block;
        /*width: 500px;*/
        grid-template-columns: 60px 180px 1fr auto;
        align-items: center;
        gap: 20px;
        padding: 20px;
        margin: 10px 0;
        color: #000;
        font-size: 24px;
        border-top: 1px solid #000;
        border-bottom: 1px solid #000;
    }

    .month {
        font-size: 24px;
    }

    .date {
        /* display: flex;
        flex-direction: column;
        align-items: center;
        font-weight: bold;
        margin-right: 95px; */
        /* flex: 0 0 60px; */
        text-align: center;
        font-size: 37px;
        font-weight: bold;
    }
    .time {
        white-space: nowrap;
        /* text-align: right;
        margin-left: 95px; */
        font-size: 22px;
    }
}