.superprogram_tab-panels {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 10px;
/*     background: #ddd; */
    flex-wrap: wrap;
}

.superprogram_tab-panel {
	display:flex;
/*     width: 130px; */
/*     font-size: 28px; */
    padding: 10px 0;
    text-align: center;
    /* background: #fff; */
    cursor: pointer;
    /* border: 1px solid #ccc; */
    border-radius: 4px;
    text-transform: capitalize;
    transition: all 0.3s ease;
	  justify-content: center; /* centers horizontally */
  align-items: center;     /* centers vertically */
	padding:10px 15px;
}

.superprogram_tab-panel.active {
    background-color: #f43d44 !important;
    color: white;
    border-color: #f43d44;
}

.superprogram_programs-content-area {
    padding: 20px;
/*     background: white; */
}

.superprogram_tab-contents {
    margin-top: 20px;
}

.superprogram_tab-content {
    display: none;
}

.superprogram_tab-content.active {
    display: block;
}

.superprogram_program-list {
    margin-top: 10px;
}

.superprogram_program-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px;
/*     border-bottom: 1px solid #ccc; */
	    justify-content: space-between;
    flex-wrap: wrap;
}

.superprogram_program-item.superprogram_current-program {
/*     background-color: white !important; */
}



.superprogram_current-program .superprogram_time,
.superprogram_current-program .superprogram_title h4 {
	color:white;
	font-size: clamp(18px, 1vw,25px) !important;
}
.superprogram_title h4{
		color:white;
	font-size: clamp(18px, 1vw,25px) !important;
}


.superprogram_thumbnail-container img {
    width: 200px;
    height: 200px;
    object-fit: contain;
	object-position:center top;
    border-radius: 10px;
    background-color: #f43d44;
}

.superprogram_time {
    font-weight: bold;
	color:white;
	font-size: clamp(18px, 1vw, 25px);
}

.superprogram_details {
    display: flex;
    flex-direction: column;
    gap: 5px;
		color:white;
	font-size: clamp(18px, 1vw, 25px);
	flex:1;

}
.superprogram_live-button-container {
    margin-left: auto;
}
.superprogram_title h4 {
    margin: 0;
	color:white;
}

@keyframes blink {
    0% {
        opacity: 1;
    }
    75% {
        opacity: 0.5;
    }
    100% {
        opacity: 1;
    }
}

@media (max-width: 768px) {
  .superprogram_thumbnail-container img {
    width: 100px !important;
    height: 100px !important;
  }


  .superprogram_time {
    font-size: clamp(14px, 1vw, 18px);
  }

  .superprogram_details {
    font-size: clamp(14px, 1vw, 18px);
  }

  .superprogram_title h4 {
	  font-size: clamp(16px, 1vw, 20px) !important;
  }

  .superprogram_tab-panel {
    font-size: clamp(14px, 1vw, 20px);
    padding: 8px 10px;
  }

  .superprogram_program-item {
    gap: 10px;
    padding: 10px 0;
  }

  .superprogram_live-button-container {
    margin-left: auto;
  }
	    .superprogram_live-button-container {
        margin-left: auto;
        flex-shrink: 0;
        display: none;
    }
}

.superprogram_program-item {
    border-bottom: solid 1px #f43d44;
}

.superprogram_program-item:first-child {
    border-top: solid 3px #f43d44;
}


