/* Image Carousel Styles */
.carousel-wrapper {
  position: relative;
  max-width: 800px;
  margin: 2rem auto;
  display: flex;
  align-items: center;
  gap: 20px;
}

.carousel-container {
  position: relative;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  background: var(--md-default-bg-color);
}

.carousel-slide {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 500px;
  transition: opacity 0.6s ease-in-out;
}

.carousel-slide.active {
  opacity: 1;
  position: relative;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-btn {
  background: none;
  color: var(--md-default-fg-color);
  border: none;
  cursor: pointer;
  transition: opacity 0.3s ease;
  z-index: 10;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  opacity: 0.5;
  flex-shrink: 0;
}

.carousel-btn:hover {
  opacity: 1;
}

.carousel-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.carousel-btn:disabled:hover {
  opacity: 0.3;
  transform: none;
}

/* Responsive design */
@media (max-width: 860px) {
  .carousel-wrapper {
    margin: 1rem auto;
    gap: 15px;
  }
  
  .carousel-slide {
    height: 300px;
  }
  
  .carousel-btn {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }
}

@media (max-width: 695px) {
  .carousel-wrapper {
    gap: 10px;
  }
  
  .carousel-slide {
    height: 250px;
  }
  
  .carousel-btn {
    width: 32px;
    height: 32px;
    font-size: 12px;
  }
} 