/* General Styles */
.carousel-wrapper {
  position: relative;
  max-width: 1000px;
  margin: 100px auto 0 auto;
}

/* Carousel Container */
.carousel-container {
  display: flex;
  overflow: hidden;
  width: 100%;
  transition: transform 0.5s ease-in-out;
}

/* Carousel Items */
.carousel-item {
  min-width: 100%;
}

.carousel-item img {
  width: 100%;
  display: block;
  border-radius: 10px;
}

.carousel-content {
  padding: 15px;
}

/* Navigation Buttons */
.carousel-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  z-index: 10;
  border-radius: 50%;
  font-size: 18px;
}

.carousel-button:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

.carousel-button.left {
  left: 10px;
}

.carousel-button.right {
  right: 10px;
}

/* Responsive Image */
.responsive-img {
  max-width: 100%;
  height: auto;
}

/* Custom Container */
.custom-container {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: black;
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

/* Footer Customization */
.footer-custom {
  position: sticky;
  bottom: 0;
  width: 100%;
  z-index: 100;
  background-color: #f5f5f5;
  padding: 5px 10px;
  line-height: 3;
}

/* Modal Styles */
.modal-content {
  max-width: 100%;
  max-height: auto;
  overflow: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .carousel-item {
    width: 100%;
  }

  .carousel-button {
    padding: 8px 12px;
    font-size: 16px;
  }

  .footer-custom {
    padding: 3px 8px;
  }
}
