/* Badge text color fix for Tabler theme (forms / show views).
   Tabler uses --tblr-badge-color which can leave coloured badges with
   unreadable text — override both the color property and the CSS var. */
.badge.bg-primary,
.badge.bg-danger,
.badge.bg-success,
.badge.bg-info,
.badge.bg-secondary,
.badge.bg-dark {
    color: #fff !important;
    --tblr-badge-color: #fff !important;
}
.badge.bg-warning {
    color: #212529 !important;
    --tblr-badge-color: #212529 !important;
}
.badge.bg-light {
    color: #212529 !important;
    --tblr-badge-color: #212529 !important;
}
