/* Show Schedule Styles */
.show-schedule-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Day Filter Buttons */
.day-filters {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    justify-content: center;
}

.day-filter-btn {
    padding: 10px 38px;
    border: 2px solid #FA732C !important;
    background: none !important;
    color: #333;
    cursor: pointer;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.day-filter-btn:hover {
    border-color: #0073aa;
    color: #0073aa;
    transform: translateY(-2px);
}

.day-filter-btn.active {
    background: #0073aa;
    color: #fff;
    border-color: #0073aa;
}


/* Container */
.shows-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px !important;                /* space between shows */
  max-width: 1140px;
  margin: 0 auto 30px;
}

.show-card-pagination {
    display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px !important;                /* space between shows */
  max-width: 1140px;
  margin: 0 auto 30px;
}

/* Each show card */
.show-cards {
  /*width: 262.5px;*/
  /*height: auto;*/
  /*display: flex;*/
  /*flex-direction: column; */
  /*border-radius: 8px;*/
  /*overflow: hidden;*/

}

/* Show image */
.show-card img {
  width: 262.5px;
  height: 147.22px;
  object-fit: cover;        /* keeps image aspect ratio while filling */
  display: block;
  border-radius: 8px;
}

.show-images img {
    border-radius: 8px !important;
}


.show-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex-grow: 1;
}

.show-time-now {
    color: #3b9b35;
    font-weight: 600;
    font-size: 12px;
}

.show-time-2 {
    color: #3b9b35;
    font-weight: 600;
    font-size: 12px;
}

.show-title {
    margin: 0;
    font-size: 20px;
    color: #333;
    line-height: 1.3;
}

h3, .h3 {
    font-size: 20px;
    text-transform: uppercase;
    color:#000000;
}

.show-status {
    font-size: 14px;
    color: #666;
}

.show-presenter-2 {
    display: flex;
    gap: 5px;
    font-size: 14px;
    color: #666;
    display: flex;
    align-items: center;
    gap :20px;

}

.show-presenters {
    display: flex;
    gap: 5px;
    font-size: 14px;
    color: #666;
    display: flex;
    align-items: center;
    gap :10px;

}

.show-image-2 img {
    border-radius: 10px !important;
}

.show-presenters a {
    color: #0073aa;
    text-decoration: none;
}

.show-presenters a:hover {
    text-decoration: underline;
}

.show-btn-2 {
    display: inline-block;
    padding: 8px 80px;
    background: none;
    color: #FA732C !important;
    text-decoration: none;
    border:  2px solid #FA732C;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    transition: background 0.3s ease;
    margin-top: auto;
}

.show-btn {
    display: inline-block;
    padding: 8px 80px;
    background: none;
    color: #fc9d2c!important;
    text-decoration: none;
    border:  2px solid #FA732C;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    transition: background 0.3s ease;
    margin-top: auto;
}


.show-btn-2:hover {
    background: #005a87;
}

/* Load More Button */
.load-more-container {
    text-align: center;
    margin-top: 20px;
}

.load-more-btn {
    padding: 14px 32px;
    background: #333;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}


.load-more-btn.hidden {
    display: flex;
}

.no-shows {
    text-align: center;
    padding: 40px;
    color: #666;
    font-size: 18px;
    grid-column: 1 / -1;
}

/* Loading State */
.shows-grid.loading {
    opacity: 0.5;
    pointer-events: none;
}

.show-status {
    font-size: 14px;
    color: #666;
    text-transform: uppercase;
    display: inline-block;
    padding: 4px 8px;
    font-weight: 600;
    margin-top: 6px;
}

.show-badge.previous {
    background: black;
    color: #fff;
    border-radius: 3px;
}

.show-badge.live
 {
    background: #e63946;
    color: #fff;
    border-radius: 3px;
}

.show-badge.next {
    background: #469d45;
    color: #fff;
    border-radius: 3px;
}

.show-badge.later {
    background: #c3d0d194;
    color: #000;
    border-radius: 3px;
}

.show-titlee {
    margin-top: -15px;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}