/*
 * Shipped by the package and registered through Filament's asset system, so the ticket list
 * looks right in any host app without asking it to add anything.
 *
 * Plain CSS on purpose: this file is served as-is, never run through Tailwind, so `@apply` and
 * utility classes would do nothing here. It leans on Filament's own custom properties instead,
 * which means it follows whatever primary colour and dark mode the host panel is using.
 */

/* The selected stat block above the ticket list.
 *
 * A border rather than a fill: each card already carries its own colour (open, bug, in progress,
 * closed), and tinting the background fought with all of them. Filament offers no class for
 * this — a stat card's background and ring are hardcoded, with no colour variant — hence a rule
 * of our own. The default shadow is left alone. */
.twt-stat-active {
    border: solid 1px var(--primary-500);
}
