.fa-trash {
    color: #dc3545;
}

.fa-eye {
    color: #0d6efd;
}

.fa-edit {
    color: #ffc107;
}

.fa:hover {
    cursor: pointer;
}

.bg-green {
    background-color: #198754;
}

.green {
    color: #198754;
}

.bg-red {
    background-color: #dc3545;
}

.red {
    color: #dc3545;
}

.bg-yellow {
    background-color: #ffc107;
}

.yellow {
    color: #ffc107;
}

.hidden {
    display: none;
}

.bold {
    font-weight: bold;
}

/* #sidebarLinks {
    scrollbar-width: auto !important;
    scrollbar-color: auto !important;
} */

html {
    scroll-behavior: smooth;
}

/* Estilo para Chrome, Edge y Safari */
::-webkit-scrollbar {
    width: 8px;
    /* Ancho del scroll */
    height: 8px;
    /* Altura para scroll horizontal */
}

::-webkit-scrollbar-track {
    background: #f1f5f9;
    /* slate-100 */
}

::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    /* slate-300 */
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
    /* slate-400 */
}

/* Soporte para Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: #cbd5e1 #f1f5f9;
}

/* Aplicar específicamente al contenedor del sidebar */
#sidebarLinks {
    scrollbar-gutter: stable;
    /* Evita saltos de layout al aparecer el scroll */
}

#sidebarLinks::-webkit-scrollbar {
    width: 6px;
}

#sidebarLinks::-webkit-scrollbar-track {
    background: #334155;
    /* slate-700 (fondo del sidebar) */
}

#sidebarLinks::-webkit-scrollbar-thumb {
    background: #475569;
    /* slate-600 */
    border-radius: 10px;
}

#sidebarLinks::-webkit-scrollbar-thumb:hover {
    background: #1e293b;
    /* slate-800 (match con tus botones) */
}

/* Soporte para Firefox en el sidebar */
#sidebarLinks {
    scrollbar-width: thin;
    scrollbar-color: #475569 #334155;
}