/* Video Audio Controls */
.video-audio-controls {
    position: absolute;
    bottom: 20px;
    left: 20px; /* Changed from right to left */
    z-index: 100;
}

.audio-toggle {
    background: rgba(0, 0, 0, 0.6);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
}

.audio-toggle:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: scale(1.1);
}

.audio-toggle.muted i::before {
    content: "\f6a9";  /* Font Awesome volume mute icon */
}

.audio-toggle:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .video-audio-controls {
        bottom: 10px;
        left: 10px; /* Changed from right to left */
    }
    
    .audio-toggle {
        width: 35px;
        height: 35px;
    }
}
