/* ── FBC WorkLife Custom Styles ───────────────────────────────────── */

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
}

/* Navbar */
.navbar-brand {
    font-weight: 700;
}

.nav-link.active {
    font-weight: 600;
}

/* Card shadows */
.card {
    border: none;
    box-shadow: 0 1px 3px rgba(0,0,0,.08);
}

/* Toast container */
.toast-container {
    z-index: 9999;
}

/* Tabulator overrides for balance colors */
.tabulator .tabulator-row.tabulator-row-even {
    background-color: inherit;
}

/* Balance positive/negative row colors */
.tabulator .tabulator-row[style*="background-color: rgb(212, 237, 218)"],
.tabulator .tabulator-row[style*="background-color: #d4edda"] {
    color: #155724;
}

.tabulator .tabulator-row[style*="background-color: rgb(248, 215, 218)"],
.tabulator .tabulator-row[style*="background-color: #f8d7da"] {
    color: #721c24;
}

/* Responsive tweaks */
@media (max-width: 768px) {
    .container-fluid {
        padding: 0.75rem !important;
    }
}

/* Loading spinner */
.spinner-border {
    width: 2rem;
    height: 2rem;
}

/* Modal */
.modal-header {
    background-color: var(--bs-primary);
    color: white;
}

.modal-header .btn-close {
    filter: brightness(0) invert(1);
}

/* Admin badge */
.badge-sysadmin {
    font-size: 0.7rem;
    vertical-align: middle;
}
