/* ============================================================
   UMWEKA ACADEMY — Multi-Tenancy / Tenant Portal Styles
   ============================================================ */

/* ── Tenant Admin Sidebar ────────────────────────────────────── */
.ta-logo { display: flex; align-items: center; gap: 10px; }
.ta-logo-img {
    height: 36px; max-width: 120px;
    object-fit: contain; border-radius: 6px;
}
.ta-logo-text { display: flex; flex-direction: column; gap: 2px; }
.ta-brand-name  { font-size: 14px; font-weight: 800; color: #fff; line-height: 1.2; }
.ta-brand-badge {
    font-size: 10px; font-weight: 700;
    color: var(--primary, #0d6efd);
    text-transform: uppercase; letter-spacing: 0.5px;
}

/* ── Usage Bar ───────────────────────────────────────────────── */
.ta-usage-card {
    margin: 12px 14px 0;
    padding: 12px 14px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 10px;
}
.ta-usage-title { font-size: 11px; font-weight: 700; color: #8b9bba; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 10px; }
.ta-usage-item  { margin-bottom: 8px; }
.ta-usage-item:last-child { margin-bottom: 0; }
.ta-usage-label { display: flex; justify-content: space-between; font-size: 11px; color: #8b9bba; margin-bottom: 4px; }
.ta-usage-bar   { height: 4px; background: rgba(255,255,255,0.07); border-radius: 99px; overflow: hidden; }
.ta-usage-fill  { height: 100%; border-radius: 99px; transition: width 0.6s ease; }

/* ── Stats Grid ──────────────────────────────────────────────── */
.ta-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-bottom: 20px;
}
@media (max-width: 900px) { .ta-stats-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .ta-stats-grid { grid-template-columns: 1fr; } }

.ta-stat-card {
    background: #1a2035;
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 14px;
    padding: 18px;
}
.ta-stat-icon {
    width: 40px; height: 40px; border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px; margin-bottom: 12px;
}
.ta-stat-val   { font-size: 26px; font-weight: 800; color: #fff; margin-bottom: 3px; }
.ta-stat-label { font-size: 12px; font-weight: 600; color: #c5d0e6; }
.ta-stat-sub   { font-size: 11px; color: #4a5568; margin-top: 2px; }

/* ── Two-column layout ───────────────────────────────────────── */
.ta-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}
@media (max-width: 700px) { .ta-two-col { grid-template-columns: 1fr; } }

/* ── Branding injection for tenant pages ─────────────────────── */
/* When a tenant is active, override the main platform branding */
.tenant-active .u-logo-text { /* Allow custom name */ }
.tenant-active .u-logo-icon { /* Hide default emoji if logo provided */ }

/* ── Public pages on tenant subdomain ────────────────────────── */
.tenant-banner {
    background: linear-gradient(135deg, var(--primary, #0d6efd), var(--secondary, #7c3aed));
    padding: 60px 20px;
    text-align: center;
    color: #fff;
}
.tenant-banner h1 { font-size: 36px; font-weight: 900; margin-bottom: 12px; }
.tenant-banner p  { font-size: 17px; opacity: 0.85; max-width: 560px; margin: 0 auto; }
