

* {
    scrollbar-width: thin; /* Firefox */
    scrollbar-color: var(--text) var(--card);
}

/* Chrome, Edge, Safari */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: var(--waiting);
}

::-webkit-scrollbar-thumb {
    background-color: #b0b0b0;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background-color: #909090;
}

/* Quitar flechas (cuando existen) */
::-webkit-scrollbar-button {
    display: none;
}

/* =========================
   SCROLLBAR - DARK MODE
   ========================= */

.dark {
    ::-webkit-scrollbar-track
    {
        background: #1e1e1e;
    }

    ::-webkit-scrollbar-thumb {
        background-color: #555;
    }

    ::-webkit-scrollbar-thumb:hover {
        background-color: #777;
    }
}


