/*
 * Teratai Admin — global theme polish.
 * Loaded after style.bundle.css so these rules can safely override it.
 * Keep this additive/overridable rather than editing the compiled Metronic bundle directly.
 */

:root,
body,
.aside,
.header,
.card,
.form-control,
.btn,
.table {
    font-family: 'Inter', Helvetica, Arial, sans-serif;
}

/* Tabular figures keep price/qty columns visually aligned as digits change. */
.table td,
.table th {
    font-variant-numeric: tabular-nums;
}

/* Metronic's default focus ring is easy to miss; make keyboard focus clearly visible everywhere. */
a:focus-visible,
button:focus-visible,
.btn:focus-visible,
.form-control:focus-visible,
.form-select:focus-visible {
    outline: 2px solid #009ef7;
    outline-offset: 2px;
}

/* Empty-state / helper text inside tables and cards. */
.table .text-muted a {
    text-decoration: underline;
}
