/* Bottom-right button styling */
.video-toggle-wrapper {
  position: absolute;
  bottom: 20px;
  right: 20px;
  z-index: 9999; /* Ensure it's above Divi's mask */
}

.mute-btn {
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  border-radius: 50%;
  padding: 12px;
  font-size: 20px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.mute-btn:hover {
  background: rgba(0, 0, 0, 0.8);
}

/* Popup Overlay */
.video-popup-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.85);
  z-index: 10000;
  justify-content: center;
  align-items: center;
}

.video-popup-content {
  position: relative;
  max-width: 90%;
  max-height: 80%;
}

.video-popup-content video {
  width: 100%;
  height: auto;
}

.video-popup-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: none;
  border: none;
  color: white;
  font-size: 30px;
  cursor: pointer;
}