/* Clases específicas de Filament para titulos globales */
html:not(.dark) .text-gray-950 {
    color: #505257 !important;
}

/* Mejoras de tabla */
html:not(.dark) .fi-ta-table th {
    background-color: #f8fafc !important;
    border-bottom: 2px solid #e2e8f0 !important;
}

html:not(.dark) .fi-ta-table tr {
    border-bottom: 1px solid #f1f5f9 !important;
    transition: background-color 0.15s ease-in-out !important;
}

html:not(.dark) .fi-ta-table tr:hover {
    background-color: rgba(241, 245, 249, 0.7) !important;
}

/* Agregar bordes verticales a las tablas */
html:not(.dark) .fi-ta-table td,
html:not(.dark) .fi-ta-table th {
    border-right: 1px solid #e2e8f0 !important;
}

html:not(.dark) .fi-ta-table td:last-child,
html:not(.dark) .fi-ta-table th:last-child {
    border-right: none !important;
}

/* Versión para modo oscuro */
html.dark .fi-ta-table td,
html.dark .fi-ta-table th {
    border-right: 1px solid rgba(55, 65, 81, 0.5) !important;
}

html.dark .fi-ta-table td:last-child,
html.dark .fi-ta-table th:last-child {
    border-right: none !important;
}

