/* Component: VideoControl (Figma 46:260) */
.video-control {
    width: 60px;
    height: 60px;
    /* Glassmorphism base */
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0.1) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    /* Safari support */

    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), inset 0 0 0 1px rgba(255, 255, 255, 0.1);
    /* As per visual verification/current CSS - strictly square */

    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;

    /* Icon color - typically white for glassmorphism on dark/video */
    color: #fff;
}

.video-control:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.35) 0%, rgba(255, 255, 255, 0.15) 100%);
    border-color: rgba(255, 255, 255, 0.5);
    background-color: transparent;
    /* Override previous flat color */
    transform: translateY(-1px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15), inset 0 0 0 1px rgba(255, 255, 255, 0.2);
}

.video-control:active {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.45) 0%, rgba(255, 255, 255, 0.25) 100%);
    transform: scale(0.98);
}

.video-control svg,
.video-control img {
    pointer-events: none;
    display: block;
}