body {
    font-family: 'Inter', sans-serif;
}

.status-active {
    background-color: #10B981;
}

.status-inactive-baja {
    background-color: #FBBF24;
}

.status-inactive-media {
    background-color: #F97316;
}

.status-inactive-alta {
    background-color: #EF4444;
}

.modal {
    transition: opacity 0.25s ease;
}

body.modal-active {
    overflow: hidden;
}

::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.dark ::-webkit-scrollbar-track {
    background: #1e293b;
}

::-webkit-scrollbar-thumb {
    background: #c7c7c7;
    border-radius: 4px;
}

.dark ::-webkit-scrollbar-thumb {
    background: #475569;
}

/* Filas de administración con bordes controlados */
.admin-row {
    border-bottom: 1px solid #e2e8f0;
    /* slate-200 para mejor visibilidad en light mode */
}

.dark .admin-row {
    border-bottom: 1px solid #334155 !important;
    /* slate-700 sólido para dark mode - más visible que slate-800 */
}

/* Asegurar que las tablas de administración no tengan bordes blancos */
.dark tbody.dark\:bg-slate-800 {
    background-color: #1e293b;
}

.dark tbody.dark\:bg-slate-800 tr {
    border-color: #334155 !important;
}

#loginOverlay {
    position: fixed;
    inset: 0;
    background: rgba(17, 24, 39, 0.95);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}