/* ── BizLedger Custom Styles ── */

body {
    background-color: #f4f6f9;
    font-size: 0.9rem;
}

/* Login */
.login-body {
    min-height: 100vh;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
}
.login-card {
    width: 100%;
    max-width: 420px;
    border-radius: 12px;
    background: #fff;
}

/* Main content padding */
.main-content {
    min-height: calc(100vh - 120px);
}

/* Navbar tweaks */
.navbar-brand {
    font-size: 1.2rem;
    letter-spacing: 0.5px;
}
.navbar .nav-link {
    font-size: 0.875rem;
}

/* KPI Cards */
.kpi-card {
    border-radius: 10px;
    border: none;
    transition: transform 0.15s ease;
}
.kpi-card:hover { transform: translateY(-2px); }
.kpi-blue  { border-left: 4px solid #0d6efd !important; }
.kpi-red   { border-left: 4px solid #dc3545 !important; }
.kpi-orange{ border-left: 4px solid #fd7e14 !important; }
.kpi-green { border-left: 4px solid #198754 !important; }

.kpi-icon  { font-size: 1.6rem; opacity: 0.2; float: right; margin-top: -4px; }
.kpi-value { font-size: 1.4rem; font-weight: 700; clear: both; }
.kpi-label { font-size: 0.75rem; color: #6c757d; text-transform: uppercase; letter-spacing: 0.5px; }

/* Tables */
.table th { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.4px; }
.table-hover tbody tr:hover { background-color: rgba(13,110,253,0.05); }
tr[onclick] { cursor: pointer; }

/* Cards */
.card { border-radius: 8px; border: 1px solid #e3e6ea; }
.card-header {
    background: #f8f9fa;
    border-bottom: 1px solid #e3e6ea;
    font-size: 0.875rem;
    padding: 0.6rem 1rem;
}

/* Footer */
.footer { font-size: 0.78rem; }

/* Status badges */
.badge { font-size: 0.72rem; }

/* Print styles */
@media print {
    .navbar, .footer, .btn, .modal, form, .alert { display: none !important; }
    .card { border: 1px solid #ccc !important; box-shadow: none !important; }
    body { background: white; }
    .main-content { min-height: auto; }
}
