/* =========== Scroll Sidebar Usuarios / Modales Hoja de Soporte =========== */
.custom-scrollbar::-webkit-scrollbar {
    width: 4px;
}

.custom-scrollbar::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.5);
    border-radius: 4px;
}

.custom-scrollbar::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.7);
}


/* =========== Scroll Sidebar Max Administración =========== */
.max::-webkit-scrollbar {
    width: 2px;
}

.max::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.5);
    border-radius: 4px;
}

.max::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.7);
}

/* =========== Scroll Sidebar Mini Administración =========== */
.mini {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.mini::-webkit-scrollbar {
    display: none;
}

/* =========== Scroll Comentarios Principal =========== */
.custom-scroll-invisible::-webkit-scrollbar {
    display: none;
}

.custom-scroll-invisible {
    -ms-overflow-style: none;
    scrollbar-width: none;
}