/* Simple Carousel Animation and UI Styles */

/* Basic smooth transitions for carousel */
.program-carousel {
  scroll-behavior: smooth;
  transition: all 0.3s ease;
}

.program-carousel-item {
  transition: none;
}

/* Simple navigation buttons */
.program-prev-btn, .program-next-btn {
  transition: opacity 0.2s ease;
  opacity: 0.8;
  z-index: 10;
}

.program-prev-btn:hover, .program-next-btn:hover {
  opacity: 1;
}

.program-prev-btn.disabled, .program-next-btn.disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

/* Simple indicators */
.program-carousel-indicators {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.program-carousel-indicators .indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #e0e0e0;
  margin: 0 5px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.program-carousel-indicators .indicator.active {
  background-color: #3B82F6;
}

/* Ensure carousel items have consistent appearance */
.tp-program-3-item {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* Basic scroll experience */
.program-carousel {
  -webkit-overflow-scrolling: touch;
  padding: 10px 0;
}

/* Responsive adjustments */
@media (max-width: 767px) {
  .program-prev-btn, .program-next-btn {
    width: 40px;
    height: 40px;
  }
  
  .program-carousel-indicators .indicator {
    width: 10px;
    height: 10px;
  }
  
  .program-carousel-indicators .indicator.active {
    width: 20px;
  }
}
