/* .mySlides {display: none;} */
img {vertical-align: middle; width:100%;}
/* .mySlides.active { display: block; } */
/* Slideshow container */
.slideshow-container {
  max-width: 800px;
  position: relative;
  margin: auto;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.mySlides img {
  width: 100%;
  display: block;
}
/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -22px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.3s ease;
  border-radius: 50%;
  user-select: none;
   z-index: 10;
  background: rgba(0,0,0,0.3);
}

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

.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.7);
}

/* Image info at bottom */
.image-info {
  position: absolute;
  bottom: 0;
  background: rgba(0,0,0,0.5);
  color: #fff;
  width: 100%;
  padding: 10px;
  font-size: 14px;
  text-align: center;
}

/* Delete button (top-right) */
.delete-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(255,0,0,0.5);
  border: none;
  color: white;
  font-size: 16px;
  cursor: pointer;
  border-radius: 50%;
  padding: 8px 12px;
  transition: 0.3s;
}
.delete-btn:hover {
  background: rgba(255,0,0,0.9);
}