/* ============================================================
   SIST3S_JK — Design System Principal
   Tema: Maçônico Escuro com Dourado
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
    --bg-dark:        #0d1017;
    --bg-surface:     #131822;
    --bg-card:        #1a2133;
    --bg-sidebar:     #0f1520;
    --border:         #242d3f;
    --border-light:   #2e3a50;

    --gold:           #c9a84c;
    --gold-light:     #e8c97a;
    --gold-dim:       #8a6e2e;
    --gold-glow:      rgba(201,168,76,0.15);

    --text-primary:   #e8edf5;
    --text-secondary: #8495a8;
    --text-muted:     #4a5568;

    --blue:           #3b82f6;
    --green:          #10b981;
    --purple:         #8b5cf6;
    --red:            #ef4444;

    --sidebar-width:  260px;
    --topbar-h:       64px;
    --radius:         10px;
    --radius-lg:      16px;

    --font-display:   'Cinzel', serif;
    --font-body:      'Inter', sans-serif;

    --shadow:         0 4px 20px rgba(0,0,0,0.4);
    --shadow-gold:    0 0 20px rgba(201,168,76,0.2);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    background: var(--bg-dark);
    color: var(--text-primary);
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
input, button { font-family: var(--font-body); }

/* ============================================================
   LOGIN PAGE
   ============================================================ */
.login-body {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(201,168,76,0.07) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(59,130,246,0.05) 0%, transparent 50%),
        var(--bg-dark);
    position: relative;
}

.login-overlay {
    position: fixed;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9a84c' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
}

.login-card {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 420px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 48px 40px 40px;
    box-shadow: var(--shadow), var(--shadow-gold);
    animation: fadeUp 0.5s ease both;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

.login-emblem {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.compass-square {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--gold-dim), var(--gold));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 700;
    color: #0d1017;
    box-shadow: 0 0 30px rgba(201,168,76,0.35);
    transform: rotate(45deg);
    letter-spacing: 0;
}

.login-title {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    text-align: center;
    color: var(--gold-light);
    letter-spacing: 0.08em;
    margin-bottom: 4px;
}

.login-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin-bottom: 32px;
    letter-spacing: 0.05em;
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-secondary);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.form-group input {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 12px 16px;
    color: var(--text-primary);
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px var(--gold-glow);
}

.form-group input::placeholder { color: var(--text-muted); }

.input-password-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.input-password-wrap input {
    width: 100%;
    padding-right: 44px;
}

.btn-eye {
    position: absolute;
    right: 12px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    padding: 4px;
    transition: color 0.2s;
}

.btn-eye:hover { color: var(--gold); }

.btn-eye svg { width: 18px; height: 18px; }


/* ---------- Botões ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--radius);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.2s ease;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold-dim), var(--gold));
    color: #0d1017;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    box-shadow: 0 4px 15px rgba(201,168,76,0.4);
    transform: translateY(-1px);
}

.btn-block { width: 100%; }

/* ---------- Alertas ---------- */
.alert {
    padding: 12px 16px;
    border-radius: var(--radius);
    font-size: 0.875rem;
    margin-bottom: 16px;
}

.alert-danger {
    background: rgba(239,68,68,0.1);
    border: 1px solid rgba(239,68,68,0.3);
    color: #fca5a5;
}

/* ============================================================
   PANEL LAYOUT (Obreiro + Painel Loja)
   ============================================================ */
.panel-body {
    display: flex;
    min-height: 100vh;
}

/* ---------- Sidebar ---------- */
.sidebar {
    width: var(--sidebar-width);
    background: var(--bg-sidebar);
    border-right: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: 100;
    transition: transform 0.3s ease;
}

.sidebar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px 20px 16px;
    border-bottom: 1px solid var(--border);
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--gold-light);
    letter-spacing: 0.06em;
}

.sidebar-emblem {
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, var(--gold-dim), var(--gold));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    font-weight: 700;
    color: #0d1017;
    transform: rotate(45deg);
    flex-shrink: 0;
}

.sidebar-nav {
    flex: 1;
    overflow-y: auto;
    padding: 12px 12px;
}

.sidebar-nav::-webkit-scrollbar { width: 4px; }
.sidebar-nav::-webkit-scrollbar-track { background: transparent; }
.sidebar-nav::-webkit-scrollbar-thumb { background: var(--border-light); border-radius: 4px; }

.nav-section-title {
    font-size: 0.68rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    padding: 14px 12px 6px;
    pointer-events: none;
}

.sidebar-nav li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 12px;
    border-radius: 8px;
    color: var(--text-secondary);
    font-size: 0.875rem;
    font-weight: 400;
    transition: all 0.15s ease;
    position: relative;
}

.sidebar-nav li a svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    opacity: 0.7;
}

.sidebar-nav li a:hover,
.sidebar-nav li.active a {
    background: var(--gold-glow);
    color: var(--gold-light);
}

.sidebar-nav li.active a {
    color: var(--gold);
    border-left: 3px solid var(--gold);
}

.sidebar-nav li.active a svg { opacity: 1; }

.nav-placeholder { opacity: 0.6; cursor: default; }

.badge-soon {
    margin-left: auto;
    font-size: 0.62rem;
    background: rgba(201,168,76,0.15);
    color: var(--gold-dim);
    padding: 2px 7px;
    border-radius: 20px;
    font-weight: 500;
    white-space: nowrap;
}

/* Sidebar footer */
.sidebar-footer {
    padding: 16px;
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 10px;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    min-width: 0;
}

.user-avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-dim), var(--gold));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.9rem;
    color: #0d1017;
    flex-shrink: 0;
}

.user-meta {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.user-name {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.user-cargo {
    font-size: 0.72rem;
    color: var(--gold-dim);
}

.btn-logout {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    color: var(--text-muted);
    transition: all 0.2s;
    flex-shrink: 0;
}

.btn-logout svg { width: 17px; height: 17px; }

.btn-logout:hover {
    background: rgba(239,68,68,0.1);
    color: var(--red);
}

/* ---------- Main Content ---------- */
.main-content {
    flex: 1;
    margin-left: var(--sidebar-width);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* ---------- Topbar ---------- */
.topbar {
    height: var(--topbar-h);
    background: var(--bg-surface);
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 28px;
    position: sticky;
    top: 0;
    z-index: 50;
}

.topbar-left { display: flex; align-items: center; gap: 16px; }

.topbar-title {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: 0.04em;
}

.sidebar-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}

.sidebar-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--text-secondary);
    border-radius: 2px;
    transition: all 0.3s;
}

.topbar-greeting {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* ---------- Page Content ---------- */
.page-content {
    padding: 28px;
    flex: 1;
}

/* Welcome Banner */
.welcome-banner {
    background: linear-gradient(135deg, #1a2133 0%, #1e2840 50%, #1a2133 100%);
    border: 1px solid var(--border);
    border-left: 4px solid var(--gold);
    border-radius: var(--radius-lg);
    padding: 28px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
    overflow: hidden;
    position: relative;
}

.welcome-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: 0;
    width: 300px;
    height: 200%;
    background: radial-gradient(ellipse, var(--gold-glow) 0%, transparent 70%);
    pointer-events: none;
}

.welcome-banner--admin { border-left-color: var(--blue); }

.welcome-text h1 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
    letter-spacing: 0.03em;
}

.welcome-text p { color: var(--text-secondary); font-size: 0.9rem; }
.welcome-text strong { color: var(--gold); }

.welcome-emblem {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 700;
    color: var(--gold);
    opacity: 0.15;
    line-height: 1;
    user-select: none;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
    margin-bottom: 28px;
}

.stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: border-color 0.2s, transform 0.2s;
}

.stat-card:hover {
    border-color: var(--border-light);
    transform: translateY(-2px);
}

.stat-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-icon svg { width: 22px; height: 22px; }

.stat-icon--blue   { background: rgba(59,130,246,0.12);  color: var(--blue); }
.stat-icon--green  { background: rgba(16,185,129,0.12);  color: var(--green); }
.stat-icon--gold   { background: var(--gold-glow);        color: var(--gold); }
.stat-icon--purple { background: rgba(139,92,246,0.12);  color: var(--purple); }

.stat-info { display: flex; flex-direction: column; }

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1;
    margin-bottom: 4px;
    font-family: var(--font-display);
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

/* Section title */
.section-title {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-secondary);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 16px;
    margin-top: 4px;
}

/* Cards Grid */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 16px;
}

.card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
    transition: all 0.2s ease;
    cursor: default;
}

.card:hover {
    border-color: var(--border-light);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.card-placeholder { opacity: 0.8; }

.card-icon {
    width: 48px;
    height: 48px;
    background: var(--gold-glow);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: var(--gold);
}

.card-icon svg { width: 24px; height: 24px; }

.card h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.card p {
    font-size: 0.82rem;
    color: var(--text-secondary);
    line-height: 1.55;
    margin-bottom: 14px;
}

.card-badge {
    font-size: 0.7rem;
    background: rgba(201,168,76,0.1);
    color: var(--gold-dim);
    padding: 3px 10px;
    border-radius: 20px;
    font-weight: 500;
    border: 1px solid rgba(201,168,76,0.2);
}

/* ---------- App Footer ---------- */
.app-footer {
    text-align: center;
    padding: 16px;
    font-size: 0.75rem;
    color: var(--text-muted);
    border-top: 1px solid var(--border);
}

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
    .sidebar {
        transform: translateX(-100%);
    }

    .sidebar.open {
        transform: translateX(0);
        box-shadow: 4px 0 20px rgba(0,0,0,0.5);
    }

    .main-content {
        margin-left: 0;
    }

    .sidebar-toggle {
        display: flex;
    }

    .page-content {
        padding: 20px 16px;
    }

    .welcome-banner {
        padding: 20px;
    }

    .welcome-emblem { display: none; }

    .login-card {
        padding: 36px 24px;
        margin: 16px;
    }
}

/* ============================================================
   SECRETARIA — Componentes Compartilhados
   ============================================================ */

/* ---------- CSS token aliases for form pages ---------- */
:root {
    --bg:      var(--bg-dark);
    --surface: var(--bg-card);
    --text:    var(--text-primary);
}

/* ---------- Button variants (a + button) ---------- */
.btn-primary,
.btn-secondary,
.btn-danger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 9px 18px;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.2s ease;
}
.btn-primary {
    background: linear-gradient(135deg, var(--gold-dim), var(--gold));
    color: #0d1017;
}
.btn-primary:hover {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    box-shadow: 0 4px 15px rgba(201,168,76,0.4);
    transform: translateY(-1px);
}
.btn-primary svg, .btn-secondary svg, .btn-danger svg { width: 16px; height: 16px; flex-shrink: 0; }
.btn-primary:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

.btn-secondary {
    background: var(--bg-card);
    color: var(--text-secondary);
    border: 1px solid var(--border);
}
.btn-secondary:hover {
    border-color: var(--border-light);
    color: var(--text-primary);
}

.btn-danger {
    background: rgba(239,68,68,0.15);
    color: #ef4444;
    border: 1px solid rgba(239,68,68,0.3);
}
.btn-danger:hover { background: rgba(239,68,68,0.25); }

/* ---------- Page Toolbar ---------- */
.page-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.search-form { display: flex; align-items: center; gap: 8px; flex: 1; max-width: 480px; }

.search-input-wrap { position: relative; flex: 1; }
.search-input-wrap svg {
    position: absolute; left: 10px; top: 50%; transform: translateY(-50%);
    width: 16px; height: 16px; color: var(--text-muted); pointer-events: none;
}
.search-input-wrap input {
    width: 100%;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 9px 12px 9px 34px;
    color: var(--text-primary);
    font-size: 0.88rem;
    font-family: var(--font-body);
    transition: border-color 0.2s;
}
.search-input-wrap input:focus { outline: none; border-color: var(--gold); }
.search-input-wrap input::placeholder { color: var(--text-muted); }
.search-clear {
    position: absolute; right: 10px; top: 50%; transform: translateY(-50%);
    color: var(--text-muted); font-size: 0.9rem; cursor: pointer; transition: color 0.2s;
}
.search-clear:hover { color: var(--red); }

/* ---------- Data Table ---------- */
.table-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.data-table { width: 100%; border-collapse: collapse; }

.data-table thead th {
    background: var(--bg-sidebar);
    padding: 11px 16px;
    text-align: left;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: var(--text-muted);
    white-space: nowrap;
    border-bottom: 1px solid var(--border);
}

.data-table tbody tr {
    border-bottom: 1px solid var(--border);
    transition: background 0.15s;
}
.data-table tbody tr:last-child { border-bottom: none; }
.data-table tbody tr:hover { background: rgba(255,255,255,0.02); }

.data-table td {
    padding: 12px 16px;
    font-size: 0.85rem;
    color: var(--text-secondary);
}
.data-table td.td-num    { color: var(--text-muted); width: 40px; text-align: center; }
.data-table td.td-name   { color: var(--text-primary); }
.data-table td.td-actions { white-space: nowrap; }

.table-count {
    padding: 10px 16px;
    font-size: 0.77rem;
    color: var(--text-muted);
    border-top: 1px solid var(--border);
    text-align: right;
}

/* ---------- Action Buttons ---------- */
.btn-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px; height: 30px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    background: transparent;
    text-decoration: none;
    color: var(--text-muted);
    margin-right: 2px;
}
.btn-action svg { width: 15px; height: 15px; }
.btn-edit:hover   { background: rgba(59,130,246,0.12);  color: var(--blue); }
.btn-delete:hover { background: rgba(239,68,68,0.12);   color: var(--red); }

/* ---------- Empty State ---------- */
.empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    gap: 12px;
    text-align: center;
}
.empty-state svg { width: 48px; height: 48px; color: var(--text-muted); opacity: 0.5; }
.empty-state h3  { font-size: 1rem; color: var(--text-secondary); font-weight: 500; }
.empty-state p   { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 8px; }

/* ---------- Modal ---------- */
.modal-overlay {
    position: fixed; inset: 0;
    background: rgba(0,0,0,0.65);
    backdrop-filter: blur(4px);
    z-index: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-box {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    max-width: 420px;
    width: 100%;
    box-shadow: var(--shadow);
    text-align: center;
}
.modal-icon {
    width: 56px; height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}
.modal-icon svg { width: 26px; height: 26px; }
.modal-icon--danger { background: rgba(239,68,68,0.12); color: #ef4444; }
.modal-box h3 { font-size: 1.05rem; font-weight: 600; color: var(--text-primary); margin-bottom: 10px; }
.modal-box p  { font-size: 0.87rem; color: var(--text-secondary); line-height: 1.55; margin-bottom: 22px; }
.modal-actions { display: flex; gap: 10px; justify-content: center; }

/* ---------- Topbar Breadcrumb ---------- */
.topbar-breadcrumb {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.88rem;
    color: var(--text-muted);
}
.topbar-breadcrumb a { color: var(--text-secondary); transition: color 0.15s; }
.topbar-breadcrumb a:hover { color: var(--gold); }
.topbar-breadcrumb span:last-child { color: var(--text-primary); }

/* ---------- Page Header with Actions ---------- */
.page-header-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 10px;
}
.page-title {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: 0.04em;
}

/* ---------- Responsive (secretaria extras) ---------- */
@media (max-width: 768px) {
    .page-toolbar { flex-direction: column; align-items: stretch; }
    .search-form  { max-width: 100%; }
    .data-table thead th:nth-child(n+5) { display: none; }
    .data-table td:nth-child(n+5):not(:last-child) { display: none; }
    .page-header-actions { flex-direction: column; align-items: flex-start; }
}

