/* Cover Video Mute/Unmute Button Styles */
.wp-block-cover.has-mute-control {
  position: relative;
}

.cover-video-mute-btn {
  position: absolute;
  padding: 10px;
  bottom: 20px;
  right: 20px;
  background: rgba(0, 0, 0, 0.7);
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
  color: white;
}

.cover-video-mute-btn:hover {
  background: rgba(0, 0, 0, 0.9);
  transform: scale(1.1);
}

.cover-video-mute-btn:focus {
  outline: 2px solid #ffffff;
  outline-offset: 2px;
}

.cover-video-mute-btn svg {
  width: 24px;
  height: 24px;
  transition: opacity 0.2s ease;
}

@media (max-width: 768px) {
  .cover-video-mute-btn {
    bottom: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
  }

  .cover-video-mute-btn svg {
    width: 20px;
    height: 20px;
  }
}