/*
 * Overrides for the hand-written tables in custom Filament pages
 * (Balance Sheet, Trial Balance, P&L, GL ledger, teller screens, ...).
 *
 * Those blades are styled with Tailwind utilities, but the panel is served by
 * Filament's pre-compiled stylesheet — there is no app-level Tailwind build in
 * /admin. Only the utilities Filament itself happens to use exist; the rest are
 * silently no-ops. `hover:bg-gray-50` ships, `dark:hover:bg-gray-800` does not,
 * so in dark mode a hovered row got a near-white background while its text
 * stayed near-white too, making the row unreadable.
 *
 * Restored here in plain CSS so it does not depend on a Tailwind build.
 * Scoped away from `.fi-ta-table` — Filament's own tables already handle their
 * dark hover state.
 */
.dark .fi-page table:not(.fi-ta-table) tbody tr:hover {
    background-color: rgb(31 41 55); /* gray-800 */
}

.dark .fi-page table:not(.fi-ta-table) tbody tr:hover td {
    color: rgb(243 244 246); /* gray-100 */
}