.iwd-wall-container {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: #000;
}
.iwd-carousel .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s;
}
.iwd-carousel .slide.active {
  opacity: 1;
}
.iwd-carousel img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background-color: #000; /* or match carousel background */
}
.iwd-title {
  position: absolute;
  z-index: 10;
  left: 20px;
  top: 20px;
  color: #fff;
  font-size: 24px;
  background: rgba(0, 0, 0, 0.5);
  padding: 10px;
  border-radius: 5px;
}
.iwd-metadata {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: white;
  background: rgba(0, 0, 0, 0.5);
  padding: 10px;
  border-radius: 5px;
}
.iwd-upload-btn {
  position: absolute;
  bottom: 20px;
  right: 20px;
  z-index: 10;
  padding: 10px 20px;
  font-size: 16px;
}
.iwd-controls {
  position: absolute;
  right: 20px;
  top: 20px;
  z-index: 10;
}
.iwd-controls select {
  padding: 5px;
  font-size: 8px;
  background: transparent;
  color: #fff;
  border: none;
}
.iwd-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 20;
  justify-content: center;
  align-items: center;
}
.iwd-overlay-content {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  position: relative;
  width: 400px;
  max-width: 90%;
}
#iwd-close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
}
