/** * Dark Mode Table Styles * * Override Mantine table hover styles untuk dark mode * Agar teks putih tetap terlihat saat hover */ /* Dark mode table hover */ [data-mantine-color-scheme="dark"] { /* Table hover */ .mantine-Table-tr:hover { background-color: rgba(255, 255, 255, 0.08) !important; } /* Table striped hover */ .mantine-Table-striped .mantine-Table-tr:nth-of-type(odd):hover { background-color: rgba(255, 255, 255, 0.08) !important; } /* Table with column borders */ .mantine-Table-withColumnBorders .mantine-Table-tr:hover { background-color: rgba(255, 255, 255, 0.08) !important; } } /* Light mode table hover - default Mantine behavior */ [data-mantine-color-scheme="light"] { .mantine-Table-tr:hover { background-color: rgba(0, 0, 0, 0.02) !important; } }