/* Overlay background */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  /* cursor: url('https://img.icons8.com/?size=100&id=18496&format=png&color=000000'), ne-resize; */
}



/* Popup container */
/* .popup-container {
  position: relative;
  background: white;
  padding: 10px;
  border-radius: 8px;
  max-width: 90%;
  max-height: 90%;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3);
} */

/* Slider container */
.slider {
  position: relative;
  display: flex;
  overflow: hidden;
  width: 500px;
  height: auto;
}

.slider img {
  margin-left: 15%;
  max-width: 70%;
  border-radius: 8px;
  display: none;
}

.slider img.active {
  display: block;
}

/* Navigation buttons */
.prev, .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
  border-radius: 50%;
}

.prev { left: 10px; }
.next { right: 10px; }

/* Close button */
.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  background: transparent;
  color: white;
  border: none;
  font-size: 24px;
  cursor: pointer;
}