/* ========================================
   VIDEO NAVIGATION
   ======================================== */

/* Video navigation buttons */
.video-nav {
    position: fixed;
    right: 0;
    top: 0;
    bottom: 0;
    width: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    z-index: 1000;
    background: transparent;
    pointer-events: none;
}

.video-nav-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    background: var(--puna-muted);
    color: var(--puna-text);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    pointer-events: auto;
}

.video-nav-btn:hover {
    background-color: var(--puna-muted);
}

/* Font Awesome icon removed - using SVG icons instead */

.video-nav-btn .icon-svg,
.video-nav-btn .icon-img {
    width: 20px;
    height: 20px;
    color: inherit;
    transition: opacity 0.2s ease, filter 0.2s ease;
}

.video-nav-btn:hover .icon-svg,
.video-nav-btn:active .icon-svg {
    opacity: 1;
    filter: brightness(0) saturate(100%) invert(31%) sepia(98%) saturate(2479%) hue-rotate(202deg) brightness(97%) contrast(90%);
}

.video-nav-btn.is-disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.video-nav-btn.is-disabled .icon-svg,
.video-nav-btn.is-disabled .icon-img {
    opacity: 0.5;
}

