.video-toggle-btn {
    position: absolute;
    bottom: 10px;
    right: 10px;
    z-index: 10; 
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    border: 1px solid white;
    padding: 0;
    border-radius: 10px;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0,0,0,0.3);
    transition: transform 0.2s ease;
}

.video-toggle-btn:hover {
    transform: scale(1.05);
    background-color: #000;
}

.video-toggle-btn:focus, 
.video-toggle-btn:focus-visible {
    outline: none !important;
    box-shadow: 0 0 0 3px #007ACC, 
                0 0 10px rgba(0, 0, 0, 0.6) !important;
    border: 1px solid #ffffff !important;
}