/* Extracted from site/dashboard.html on 2026-04-14 */

.dash-wrap { max-width: 1100px; margin: 0 auto; padding: 32px 24px 80px; }
        .dash-head { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 16px; margin-bottom: 32px; }
        .dash-head h1 { font-size: 32px; font-weight: 800; margin: 0 0 4px; }
        .dash-head p { color: var(--text-secondary); margin: 0; }
        .dash-actions { display: flex; gap: 10px; flex-wrap: wrap; }
        .btn { display: inline-block; padding: 12px 18px; border-radius: 10px; font-weight: 600; font-size: 14px; text-decoration: none; cursor: pointer; border: none; }
        .btn-primary { background: var(--accent, #2563eb); color: white; }
        .btn-primary:hover { opacity: 0.9; text-decoration: none; }
        .btn-secondary { background: white; color: var(--text-primary, #111); border: 1.5px solid var(--border, #e5e7eb); }
        .btn-secondary:hover { background: #f9fafb; text-decoration: none; }
        .org-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 16px; }
        .org-card { background: white; border: 1.5px solid var(--border, #e5e7eb); border-radius: 14px; padding: 20px; text-decoration: none; color: inherit; transition: border-color 0.15s, transform 0.15s; display: block; }
        .org-card:hover { border-color: var(--accent, #2563eb); text-decoration: none; transform: translateY(-2px); }
        .org-card .name { font-size: 18px; font-weight: 700; margin-bottom: 4px; }
        .org-card .meta { font-size: 13px; color: var(--text-muted, #6b7280); display: flex; gap: 10px; flex-wrap: wrap; }
        .org-card .role-pill { display: inline-block; padding: 2px 8px; border-radius: 999px; background: #eff6ff; color: #1d4ed8; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; }
        .empty { text-align: center; padding: 60px 20px; background: #f9fafb; border: 1.5px dashed var(--border, #e5e7eb); border-radius: 14px; }
        .empty h2 { font-size: 22px; margin: 0 0 8px; }
        .empty p { color: var(--text-secondary); margin: 0 0 20px; }
        .loading { text-align: center; padding: 60px 20px; color: var(--text-muted); }
        .superadmin-banner { background: #fef3c7; border: 1.5px solid #fcd34d; border-radius: 10px; padding: 12px 16px; margin-bottom: 24px; display: flex; justify-content: space-between; align-items: center; }
        .superadmin-banner span { font-size: 14px; color: #92400e; font-weight: 600; }
