/* Custom Interactive Scrollbar */
.custom-scrollbar {
    position: fixed;
    right: 0;
    top: 0;
    width: 24px;
    height: 100vh;
    background: rgba(0, 0, 0, 0.15);
    z-index: 9999;
    cursor: pointer;
    display: none;
}

.custom-scrollbar-thumb {
    position: absolute;
    right: 2px;
    width: 20px;
    background: var(--primary-green);
    border-radius: 10px;
    transition: background 0.2s ease;
    cursor: grab;
}

.custom-scrollbar-thumb:active {
    cursor: grabbing;
    background: var(--primary-green-dark);
}

/* Zobraz pouze na mobilu */
@media (max-width: 768px) {
    .custom-scrollbar {
        display: block;
    }

    /* Skryj nativní scrollbar */
    body {
        scrollbar-width: none;
    }

    body::-webkit-scrollbar {
        display: none;
    }
}

/* Animace při tažení */
.custom-scrollbar.dragging .custom-scrollbar-thumb {
    transition: none;
}