/* assets/css/carousel.css */
.carousel-modal {
  display: relative; /* Hidden by default */
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
}

.carousel-content {
  position: relative;
  margin: auto;
  top: 50%;
  transform: translateY(-50%);
  text-align: center;
}

.carousel-image {
  max-width: 90%;
  max-height: 80%;
}

.carousel-navigation {
  height: 100%;
  position: absolute;
  top: 0%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.prev,
.next {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.7);
  border: none;
  border-radius: 100%;
  width: 50px;
  height: 50px;
  cursor: pointer;
  padding: 10px;
  font-size: 18px;
}

.close {
  display: flex;
  z-index: 1000;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 30px; /* Adjust as needed */
  right: 10px; /* Adjust as needed */
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.7);
  border: none;
  border-radius: 100%;
  width: 50px;
  height: 50px;
  cursor: pointer;
  padding: 10px;
  font-size: 18px;
}
