/* ── Dark-mode contrast fixes ────────────────────────────────────────── */
/* Cards (Paper) and Accordion items share the same body-color bg as the  */
/* page in dark mode, making them invisible. These rules add subtle       */
/* borders so every container stands out from the page background.        */

[data-mantine-color-scheme="dark"] .mantine-Paper-root {
    border: 1px solid var(--mantine-color-dark-4);
}

[data-mantine-color-scheme="dark"] .mantine-Accordion-item {
    border: 1px solid var(--mantine-color-dark-4);
}


