/* ============================================================
   TicGest Theme — Gobernación del Magdalena
   Minimalista Corporativo – Azul institucional + Rojo suave
   ============================================================ */

/* ─── Variables ─────────────────────────────────────────────── */
:root {
    --primary:        #1E4B8E;
    --primary-dark:   #163A72;
    --primary-light:  #D6E4F7;
    --primary-soft:   #EBF3FC;
    --accent:         #C0392B;
    --accent-light:   #FDEDEC;
    --accent-soft:    #F9D7D3;
    --teal:           #1A7F7A;
    --teal-light:     #D0F0EE;
    --purple:         #6C3483;
    --purple-light:   #EAD4F5;
    --surface:        #F7F8FC;
    --surface-card:   #FFFFFF;
    --border:         #E8EBF2;
    --border-dark:    #D0D5E5;
    --sidebar-bg:     #1A3561;
    --sidebar-text:   #CBD8F0;
    --sidebar-active: #3E7BCA;
    --text-main:      #1E2A3B;
    --text-secondary: #5A6A80;
    --text-muted:     #8E9BB0;
    --shadow-sm:      0 2px 8px rgba(30, 75, 142, 0.08);
    --shadow-md:      0 4px 20px rgba(30, 75, 142, 0.12);
    --shadow-lg:      0 8px 40px rgba(30, 75, 142, 0.16);
    --radius:         12px;
    --radius-sm:      8px;
    --radius-lg:      18px;
    --font:           'Inter', system-ui, sans-serif;
    --transition:     0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ─── Base ───────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

body {
    font-family: var(--font);
    background: var(--surface);
    color: var(--text-main);
    font-size: 14px;
    line-height: 1.6;
}

a { color: var(--primary); text-decoration: none; }
a:hover { color: var(--primary-dark); }

/* ─── Sidebar ────────────────────────────────────────────────── */
.main-sidebar.sidebar-custom {
    background: var(--sidebar-bg);
    border-right: none;
    box-shadow: 2px 0 20px rgba(0, 0, 0, 0.15);
}

.brand-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 18px 16px 12px;
    background: rgba(0, 0, 0, 0.25);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    gap: 8px;
    text-decoration: none;
}
.brand-link:hover { background: rgba(0,0,0,0.32); text-decoration: none; }
.brand-logo-full { width: 100%; display: flex; justify-content: center; }
.brand-image-full {
    width: 168px;
    height: auto;
    object-fit: contain;
    filter: brightness(0) invert(1) drop-shadow(0 2px 6px rgba(0,0,0,0.4));
}
.brand-text-sub {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
}

/* Sidebar user section */
.sidebar-user-section {
    padding: 12px 16px 8px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    margin-bottom: 4px;
}
.sidebar-user-badge {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    color: var(--sidebar-active);
    background: rgba(62, 123, 202, 0.15);
    padding: 5px 10px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
}

/* Nav items */
.nav-header {
    color: rgba(203, 216, 240, 0.5);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    padding: 14px 20px 4px;
}

.nav-sidebar .nav-item .nav-link {
    color: var(--sidebar-text);
    padding: 10px 18px;
    margin: 2px 10px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all var(--transition);
    font-weight: 400;
}
.nav-sidebar .nav-item .nav-link:hover {
    background: rgba(255,255,255,0.08);
    color: #fff;
    transform: translateX(2px);
}
.nav-sidebar .nav-item .nav-link.active {
    background: var(--sidebar-active);
    color: #fff;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(62, 123, 202, 0.35);
}
.nav-sidebar .nav-item .nav-link .nav-icon {
    width: 18px;
    text-align: center;
    font-size: 14px;
    opacity: 0.85;
}
.nav-sidebar .nav-item .nav-link.active .nav-icon { opacity: 1; }

/* ─── Navbar ─────────────────────────────────────────────────── */
.navbar-custom {
    background: var(--surface-card);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    padding: 0 24px;
    min-height: 60px;
}

.sidebar-toggle {
    color: var(--text-secondary) !important;
    font-size: 16px;
    transition: color var(--transition);
}
.sidebar-toggle:hover { color: var(--primary) !important; }

.dep-tag {
    font-size: 12px;
    font-weight: 500;
    color: var(--text-secondary);
    background: var(--primary-soft);
    padding: 5px 12px;
    border-radius: 20px;
    border: 1px solid var(--primary-light);
}

.user-menu-toggle {
    display: flex;
    align-items: center;
    color: var(--text-main) !important;
    padding: 8px 12px !important;
    border-radius: var(--radius-sm);
    transition: background var(--transition);
}
.user-menu-toggle:hover { background: var(--surface) !important; }

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

.dropdown-user {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    padding: 0;
    overflow: hidden;
    min-width: 220px;
}
.dropdown-header { padding: 0; background: var(--primary-soft); border-bottom: 1px solid var(--border); }
.user-info-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
}
.user-avatar-lg {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.dropdown-divider { margin: 0; border-color: var(--border); }
.dropdown-item { padding: 10px 16px; color: var(--text-main); font-size: 13px; }
.dropdown-item:hover { background: var(--surface); }

/* ─── Content area ───────────────────────────────────────────── */
.content-wrapper { background: var(--surface); }
.content-header { padding: 20px 28px 0; }
.page-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-main);
    margin: 0;
}
.breadcrumb {
    background: none;
    padding: 0;
    font-size: 12px;
}
.breadcrumb-item a { color: var(--primary); }
.breadcrumb-item.active { color: var(--text-muted); }
.breadcrumb-item + .breadcrumb-item::before { color: var(--border-dark); }
.content { padding: 20px 28px 28px; }

/* ─── Cards ──────────────────────────────────────────────────── */
.card-custom {
    background: var(--surface-card);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}
.card-custom-header {
    padding: 16px 20px;
    border-bottom: 1px solid var(--border);
    font-weight: 600;
    font-size: 14px;
    color: var(--primary);
    background: var(--primary-soft);
}
.card-custom-body { padding: 20px; }

/* ─── Stat Cards ─────────────────────────────────────────────── */
.stat-card {
    border-radius: var(--radius);
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition);
    cursor: default;
}
.stat-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}
.stat-card-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}
.stat-card-body {}
.stat-value {
    font-size: 28px;
    font-weight: 700;
    line-height: 1;
    color: var(--text-main);
}
.stat-label {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 4px;
    font-weight: 500;
}
/* Variantes de color */
.stat-card-blue { background: var(--surface-card); }
.stat-card-blue .stat-card-icon { background: var(--primary-light); color: var(--primary); }
.stat-card-teal { background: var(--surface-card); }
.stat-card-teal .stat-card-icon { background: var(--teal-light); color: var(--teal); }
.stat-card-red { background: var(--surface-card); }
.stat-card-red .stat-card-icon { background: var(--accent-light); color: var(--accent); }
.stat-card-purple { background: var(--surface-card); }
.stat-card-purple .stat-card-icon { background: var(--purple-light); color: var(--purple); }

/* ─── Welcome Card ───────────────────────────────────────────── */
.welcome-card {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: var(--radius);
    color: #fff;
    overflow: hidden;
    border: none;
}
.welcome-card-body {
    padding: 24px 28px;
    display: flex;
    align-items: center;
    gap: 20px;
}
.welcome-icon {
    width: 56px;
    height: 56px;
    background: rgba(255,255,255,0.15);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}
.welcome-text h4 { font-size: 18px; font-weight: 700; margin: 0 0 4px; }
.welcome-text .text-muted { color: rgba(255,255,255,0.75) !important; font-size: 13px; }
.welcome-text strong { color: #fff; }

/* ─── Quick Access ───────────────────────────────────────────── */
.section-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 12px;
}
.quick-access-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: var(--surface-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text-main);
    font-size: 13px;
    font-weight: 500;
    transition: all var(--transition);
    box-shadow: var(--shadow-sm);
}
.quick-access-card:hover {
    background: var(--primary-soft);
    border-color: var(--primary-light);
    color: var(--primary);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
    text-decoration: none;
}
.quick-access-card i { font-size: 16px; color: var(--primary); }
.quick-access-card .fa-arrow-right { font-size: 12px; color: var(--text-muted); }
.quick-access-soon { cursor: default; opacity: 0.6; }
.quick-access-soon:hover { background: var(--surface-card); border-color: var(--border); color: var(--text-main); transform: none; }
.badge-soon {
    margin-left: auto;
    font-size: 10px;
    background: var(--primary-light);
    color: var(--primary);
    padding: 2px 8px;
    border-radius: 20px;
    font-weight: 600;
}

/* ─── Page Action Header ─────────────────────────────────────── */
.page-action-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

/* ─── Buttons ────────────────────────────────────────────────── */
.btn-primary-custom {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--primary);
    color: #fff;
    border: none;
    padding: 9px 20px;
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(30, 75, 142, 0.25);
}
.btn-primary-custom:hover {
    background: var(--primary-dark);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(30, 75, 142, 0.35);
    text-decoration: none;
}

.btn-secondary-custom {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid var(--border);
    padding: 9px 20px;
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
}
.btn-secondary-custom:hover {
    background: var(--surface);
    color: var(--text-main);
    text-decoration: none;
}

/* Form actions row */
.form-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 24px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

/* ─── Tabla ──────────────────────────────────────────────────── */
.table-custom {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}
.table-custom thead tr {
    background: var(--primary-soft);
    border-bottom: 2px solid var(--primary-light);
}
.table-custom th {
    padding: 11px 14px;
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--primary);
}
.table-custom td {
    padding: 12px 14px;
    border-bottom: 1px solid var(--border);
    color: var(--text-main);
    vertical-align: middle;
}
.table-custom tbody tr:hover { background: var(--surface); }
.table-custom tbody tr:last-child td { border-bottom: none; }

/* User cell */
.user-cell, .dep-cell {
    display: flex;
    align-items: center;
    gap: 10px;
}
.user-avatar-sm {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.dep-icon {
    width: 32px;
    height: 32px;
    border-radius: var(--radius-sm);
    background: var(--primary-soft);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    flex-shrink: 0;
}

/* Badges de rol */
.role-badge {
    font-size: 11px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 20px;
}
.role-superadmin { background: #FEF3C7; color: #92400E; }
.role-admin      { background: var(--primary-light); color: var(--primary-dark); }
.role-editor     { background: var(--teal-light); color: var(--teal); }
.role-viewer     { background: var(--border); color: var(--text-secondary); }

/* Status badges */
.badge { font-size: 11px; font-weight: 600; padding: 3px 10px; border-radius: 20px; }
.badge-active   { background: #D1FAE5; color: #065F46; }
.badge-inactive { background: #FEF3C7; color: #92400E; }
.badge-deleted  { background: var(--accent-soft); color: var(--accent); }

.code-badge {
    font-size: 11px;
    background: var(--surface);
    border: 1px solid var(--border);
    padding: 2px 8px;
    border-radius: 4px;
    color: var(--text-secondary);
    font-family: 'Courier New', monospace;
}

.user-count-badge {
    font-size: 12px;
    font-weight: 600;
    color: var(--primary);
    background: var(--primary-soft);
    padding: 3px 10px;
    border-radius: 20px;
}

/* Action buttons */
.action-buttons { display: flex; align-items: center; justify-content: center; gap: 6px; }
.btn-action {
    width: 30px;
    height: 30px;
    border-radius: var(--radius-sm);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    border: none;
    cursor: pointer;
    transition: all var(--transition);
}
.btn-action-edit {
    background: var(--primary-soft);
    color: var(--primary);
    text-decoration: none;
}
.btn-action-edit:hover {
    background: var(--primary);
    color: #fff;
    text-decoration: none;
}
.btn-action-delete { background: var(--accent-light); color: var(--accent); }
.btn-action-delete:hover { background: var(--accent); color: #fff; }

/* ─── Forms ──────────────────────────────────────────────────── */
.form-group-custom { margin-bottom: 18px; }
.form-label-custom {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 6px;
    letter-spacing: 0.3px;
}
.form-input-custom {
    width: 100%;
    padding: 9px 13px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-family: var(--font);
    color: var(--text-main);
    background: var(--surface-card);
    transition: border-color var(--transition), box-shadow var(--transition);
    outline: none;
}
.form-input-custom:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(30, 75, 142, 0.1);
}
.form-input-custom::placeholder { color: var(--text-muted); }
select.form-input-custom { cursor: pointer; }
textarea.form-input-custom { resize: vertical; }

/* Inline alerts */
.alert-inline {
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    font-size: 13px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
}
.alert-inline-error {
    background: var(--accent-light);
    color: var(--accent);
    border-left: 3px solid var(--accent);
}
.alert-inline-success {
    background: #D1FAE5;
    color: #065F46;
    border-left: 3px solid #10B981;
}

/* Toast alerts */
.alert-toast {
    position: fixed;
    top: 20px;
    right: 24px;
    z-index: 9999;
    padding: 12px 20px;
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--shadow-lg);
    max-width: 380px;
    transition: opacity 0.4s ease;
}
.alert-toast-error {
    background: #fff;
    border: 1px solid var(--accent-soft);
    color: var(--accent);
    border-left: 4px solid var(--accent);
}
.alert-toast-success {
    background: #fff;
    border: 1px solid #A7F3D0;
    color: #065F46;
    border-left: 4px solid #10B981;
}
.alert-close {
    margin-left: auto;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 16px;
    color: inherit;
    opacity: 0.6;
    padding: 0;
    line-height: 1;
}
.alert-close:hover { opacity: 1; }

/* ─── Empty State ────────────────────────────────────────────── */
.empty-state {
    text-align: center;
    padding: 48px 20px;
    color: var(--text-muted);
}
.empty-state i { font-size: 48px; color: var(--border-dark); margin-bottom: 12px; display: block; }
.empty-state p { font-size: 14px; margin-bottom: 16px; }

/* ─── Error Pages ────────────────────────────────────────────── */
.error-page-wrapper {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px;
}
.error-code {
    font-size: 96px;
    font-weight: 800;
    color: var(--primary-light);
    line-height: 1;
    letter-spacing: -4px;
}
.error-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-main);
    margin-top: 8px;
    margin-bottom: 8px;
}

/* ─── Footer ─────────────────────────────────────────────────── */
.main-footer {
    background: var(--surface-card);
    border-top: 1px solid var(--border);
    color: var(--text-muted);
    font-size: 12px;
    padding: 14px 28px;
}

/* ─── Login Page ─────────────────────────────────────────────── */
body.login-page-custom {
    background: var(--surface);
    display: flex;
    min-height: 100vh;
    margin: 0;
    padding: 0;
}
.login-page-wrapper {
    display: flex;
    width: 100%;
    min-height: 100vh;
}

/* Panel izquierdo */
.login-brand-panel {
    flex: 0 0 45%;
    background: linear-gradient(155deg, var(--primary) 0%, var(--primary-dark) 60%, #0F2345 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 48px 40px;
    position: relative;
    overflow: hidden;
}
.login-brand-panel::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 300px;
    height: 300px;
    background: rgba(255,255,255,0.03);
    border-radius: 50%;
}
.login-brand-panel::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -60px;
    width: 350px;
    height: 350px;
    background: rgba(255,255,255,0.03);
    border-radius: 50%;
}
.login-brand-content { position: relative; z-index: 1; text-align: center; max-width: 360px; }
.login-escudo {
    width: 320px;
    max-width: 90%;
    height: auto;
    object-fit: contain;
    margin-bottom: 28px;
    filter: brightness(0) invert(1) drop-shadow(0 4px 16px rgba(0,0,0,0.35));
}
.login-brand-title {
    font-size: 26px;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 8px;
}
.login-brand-subtitle {
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    font-weight: 400;
    margin-bottom: 24px;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.login-brand-divider {
    width: 48px;
    height: 3px;
    background: var(--accent);
    border-radius: 2px;
    margin: 0 auto 20px;
}
.login-brand-desc {
    font-size: 13px;
    line-height: 1.7;
    color: rgba(255,255,255,0.65);
}
.login-brand-footer {
    position: absolute;
    bottom: 24px;
    font-size: 11px;
    color: rgba(255,255,255,0.4);
    z-index: 1;
}

/* Panel derecho */
.login-form-panel {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 32px;
    background: var(--surface);
}
.login-form-card {
    width: 100%;
    max-width: 420px;
    background: var(--surface-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    padding: 40px 36px;
}
.login-form-header { text-align: center; margin-bottom: 28px; }
.login-form-icon {
    width: 56px;
    height: 56px;
    background: var(--primary-soft);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--primary);
    margin: 0 auto 16px;
}
.login-form-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-main);
    margin: 0 0 6px;
}
.login-form-subtitle {
    font-size: 13px;
    color: var(--text-muted);
    margin: 0;
}

/* Login alerts */
.login-alert-error {
    background: var(--accent-light);
    color: var(--accent);
    border: 1px solid var(--accent-soft);
    border-radius: var(--radius-sm);
    padding: 10px 14px;
    font-size: 13px;
    margin-bottom: 16px;
}
.login-alert-success {
    background: #D1FAE5;
    color: #065F46;
    border: 1px solid #A7F3D0;
    border-radius: var(--radius-sm);
    padding: 10px 14px;
    font-size: 13px;
    margin-bottom: 16px;
}

/* Password toggle */
.input-pw-wrapper { position: relative; }
.input-pw-wrapper .form-input-custom { padding-right: 40px; }
.pw-toggle {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 40px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
}
.pw-toggle:hover { color: var(--primary); }

/* Login button */
.btn-login {
    width: 100%;
    padding: 12px;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all var(--transition);
    box-shadow: 0 4px 16px rgba(30, 75, 142, 0.3);
    letter-spacing: 0.3px;
    margin-top: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.btn-login:hover {
    background: var(--primary-dark);
    box-shadow: 0 6px 24px rgba(30, 75, 142, 0.4);
    transform: translateY(-1px);
}
.btn-login:active { transform: translateY(0); }

.login-form-footer {
    margin-top: 20px;
    text-align: center;
    font-size: 11px;
    color: var(--text-muted);
}

/* ─── Utilities ──────────────────────────────────────────────── */
.font-weight-600 { font-weight: 600; }
.text-muted { color: var(--text-muted) !important; }

/* ─── Responsive ─────────────────────────────────────────────── */
@media (max-width: 768px) {
    .login-brand-panel { display: none; }
    .login-form-panel { padding: 24px 16px; }

    .content { padding: 16px; }
    .content-header { padding: 16px 16px 0; }
    .page-action-header { flex-direction: column; gap: 12px; align-items: flex-start; }
}
