/* =====================================================
   AFSS CONTRACTOR ERP — Custom Design System
   Base: Bootstrap 5.3 + Inter Font + Tabler Icons
   ===================================================== */

/* ── Variables ───────────────────────────────────────── */
:root {
  --navy:       #0d2137;
  --navy-mid:   #132d4a;
  --navy-light: #1a3a5c;
  --blue:       #2563eb;
  --blue-pale:  #eff6ff;
  --sb-w:       228px;
  --tb-h:       56px;
  --radius-card: 14px;
  --radius-btn:  8px;
  --shadow-card: 0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --shadow-hover: 0 6px 20px rgba(0,0,0,.09);
}

/* ── Base ────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { font-size: 14px; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: #f1f5f9;
  color: #1e293b;
  -webkit-font-smoothing: antialiased;
}
::-webkit-scrollbar { width: 5px; height: 5px; }
::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 10px; }
::-webkit-scrollbar-track { background: transparent; }

/* ── Bootstrap Overrides ─────────────────────────────── */
.btn { border-radius: var(--radius-btn); font-weight: 600; font-family: 'Inter', sans-serif; font-size: 13px; }
.btn-primary { background: var(--blue); border-color: var(--blue); }
.btn-primary:hover { background: #1d4ed8; border-color: #1d4ed8; }
.form-control, .form-select {
  border-radius: 8px; border: 1.5px solid #e2e8f0;
  font-size: 13px; font-family: 'Inter', sans-serif;
  transition: border-color .15s, box-shadow .15s;
}
.form-control:focus, .form-select:focus {
  border-color: var(--blue); box-shadow: 0 0 0 3px rgba(37,99,235,.1);
}
.dropdown-menu { border-radius: 12px; border: 1px solid #e2e8f0; padding: 6px; }
.dropdown-item { border-radius: 6px; font-size: 13px; padding: 8px 12px; }
.dropdown-item:hover { background: #f8fafc; }
.table { font-size: 13px; }
.table thead th {
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .5px; color: #64748b; background: #f8fafc;
  border-bottom: 1px solid #e2e8f0; padding: 10px 14px; white-space: nowrap;
}
.table tbody td { padding: 10px 14px; vertical-align: middle; border-bottom: 1px solid #f1f5f9; color: #374151; }
.table-hover tbody tr:hover { background: #f8fafc !important; }
.table tbody tr:last-child td { border-bottom: none; }
.badge { font-size: 11px; font-weight: 600; padding: 4px 8px; border-radius: 20px; }
.alert { border-radius: 10px; font-size: 13px; border: none; }
.modal-content { border-radius: 16px; border: none; }
.form-label { font-size: 12px; font-weight: 600; color: #475569; margin-bottom: 5px; }
.card { border-radius: var(--radius-card); border: 1px solid #e2e8f0; box-shadow: var(--shadow-card); }
.card:hover { box-shadow: var(--shadow-hover); }
.card-header { border-bottom: 1px solid #f1f5f9; background: #fff; border-radius: var(--radius-card) var(--radius-card) 0 0 !important; padding: 14px 18px; }
.card-body { padding: 18px; }
.nav-pills .nav-link { border-radius: 8px; font-size: 13px; font-weight: 500; color: #64748b; padding: 6px 14px; }
.nav-pills .nav-link.active { background: #fff; color: var(--blue); font-weight: 700; box-shadow: var(--shadow-card); }

/* ── Login Page ──────────────────────────────────────── */
.login-page {
  min-height: 100vh;
  background: linear-gradient(145deg, var(--navy) 0%, var(--navy-mid) 50%, #1a3a6c 100%);
  display: flex; align-items: center; justify-content: center; padding: 24px;
}
.login-container { width: 100%; max-width: 420px; }
.login-card {
  background: #fff; border-radius: 20px;
  padding: 40px 36px; box-shadow: 0 24px 64px rgba(0,0,0,.25);
}
.login-logo {
  width: 56px; height: 56px; background: var(--blue); border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; color: #fff; box-shadow: 0 4px 20px rgba(37,99,235,.35);
}
.text-navy { color: var(--navy); }
.badge-demo {
  display: inline-flex; align-items: center; gap: 5px;
  background: #f0fdf4; color: #15803d; border: 1px solid #bbf7d0;
  font-size: 11px; font-weight: 600; padding: 4px 12px; border-radius: 20px;
}
.badge-demo i { font-size: 7px; animation: pulse 2s infinite; }
.form-label-erp { font-size: 12px; font-weight: 600; color: #475569; display: block; margin-bottom: 5px; }
.form-control-erp {
  width: 100%; padding: 9px 12px; border: 1.5px solid #e2e8f0;
  border-radius: 8px; font-size: 13px; font-family: 'Inter', sans-serif;
  transition: .15s; outline: none;
}
.form-control-erp:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(37,99,235,.1); }
.role-chips { display: flex; flex-wrap: wrap; gap: 6px; }
.role-chip {
  padding: 5px 12px; border-radius: 20px; font-size: 12px; font-weight: 500;
  border: 1.5px solid #e2e8f0; color: #64748b; cursor: pointer; transition: .15s; user-select: none;
}
.role-chip:hover { border-color: var(--blue); color: var(--blue); background: var(--blue-pale); }
.role-chip.active { background: var(--blue-pale); border-color: var(--blue); color: #1d4ed8; font-weight: 700; }
.btn-login {
  background: var(--blue); color: #fff; border: none; border-radius: 10px;
  padding: 12px; font-size: 14px; font-weight: 700;
  box-shadow: 0 4px 16px rgba(37,99,235,.3); transition: .15s;
}
.btn-login:hover { background: #1d4ed8; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(37,99,235,.4); }

/* ── App Layout ──────────────────────────────────────── */
#app { display: flex; flex-direction: column; height: 100vh; overflow: hidden; }

/* Topbar */
.topbar {
  height: var(--tb-h); background: var(--navy); flex-shrink: 0;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 14px; border-bottom: 1px solid rgba(255,255,255,.06); z-index: 100;
}
.brand-icon {
  width: 32px; height: 32px; background: var(--blue); border-radius: 8px;
  display: flex; align-items: center; justify-content: center; color: #fff; font-size: 16px; flex-shrink: 0;
}
.brand-name { color: #fff; font-size: 14px; font-weight: 700; line-height: 1.2; }
.brand-sub { color: rgba(255,255,255,.35); font-size: 10px; }
.btn-sb-toggle {
  width: 34px; height: 34px; background: transparent; border: none;
  color: rgba(255,255,255,.55); font-size: 20px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center; cursor: pointer; transition: .15s;
}
.btn-sb-toggle:hover { background: rgba(255,255,255,.1); color: #fff; }
.tb-clock { color: rgba(255,255,255,.4); font-size: 12px; margin-right: 4px; }
.btn-tb-pill {
  background: rgba(255,255,255,.08); color: rgba(255,255,255,.7); border: none;
  border-radius: 20px; padding: 5px 12px; font-size: 12px; font-weight: 500;
  display: flex; align-items: center; gap: 5px; cursor: pointer; transition: .15s;
}
.btn-tb-pill:hover { background: rgba(255,255,255,.14); color: #fff; }
.btn-tb-icon {
  width: 34px; height: 34px; background: transparent; border: none;
  color: rgba(255,255,255,.55); font-size: 18px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center; cursor: pointer; transition: .15s;
}
.btn-tb-icon:hover { background: rgba(255,255,255,.1); color: #fff; }
.notif-dot {
  top: 7px; right: 7px; width: 7px; height: 7px;
  background: #ef4444; border-radius: 50%; border: 1.5px solid var(--navy);
}
.btn-user {
  background: transparent; border: none; border-radius: 10px;
  padding: 5px 10px; cursor: pointer; transition: .15s;
}
.btn-user:hover { background: rgba(255,255,255,.08); }
.user-av {
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--blue); color: #fff; display: flex;
  align-items: center; justify-content: center; font-size: 11px; font-weight: 700; flex-shrink: 0;
}
.user-name { color: #fff; font-size: 13px; font-weight: 600; line-height: 1.2; }
.user-role { color: rgba(255,255,255,.4); font-size: 11px; }
.notif-dropdown { padding: 0 !important; }
.notif-item {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 10px 16px; border-bottom: 1px solid #f1f5f9; cursor: pointer; transition: .1s;
}
.notif-item:hover { background: #f8fafc; }
.notif-item.unread { background: #eff6ff; }
.notif-item.unread:hover { background: #dbeafe; }
.notif-item i { font-size: 16px; flex-shrink: 0; margin-top: 2px; }
.notif-item:last-child { border-bottom: none; }

/* Sidebar */
.app-body { display: flex; flex: 1; overflow: hidden; }
.sidebar {
  width: var(--sb-w); background: var(--navy-dark, #0a1c32); flex-shrink: 0;
  overflow-y: auto; display: flex; flex-direction: column;
  transition: width .25s cubic-bezier(.4,0,.2,1);
  border-right: 1px solid rgba(255,255,255,.04);
  background: #0b1f35;
}
.sidebar::-webkit-scrollbar { width: 3px; }
.sidebar::-webkit-scrollbar-thumb { background: rgba(255,255,255,.1); }
.sidebar.collapsed { width: 56px; }
.sidebar.collapsed .sb-section-label,
.sidebar.collapsed .sb-link span,
.sidebar.collapsed .sb-badge,
.sidebar.collapsed .sb-footer-text { display: none; }
.sidebar.collapsed .sb-link { justify-content: center; padding: 9px 0; }
.sidebar.collapsed .sb-link i { margin: 0; width: auto; }
.sb-nav { padding: 10px 8px; flex: 1; }
.sb-section-label {
  font-size: 9px; font-weight: 700; text-transform: uppercase; letter-spacing: .8px;
  color: rgba(255,255,255,.22); padding: 10px 10px 4px;
}
.sb-link {
  display: flex; align-items: center; gap: 9px;
  padding: 8px 10px; border-radius: 8px; cursor: pointer;
  color: rgba(255,255,255,.5); font-size: 13px; font-weight: 500;
  text-decoration: none; transition: .12s; border-left: 2px solid transparent;
  margin-bottom: 1px;
}
.sb-link:hover { background: rgba(255,255,255,.07); color: rgba(255,255,255,.85); }
.sb-link.active { background: rgba(37,99,235,.18); color: #fff; border-left-color: var(--blue); }
.sb-link i { font-size: 17px; flex-shrink: 0; width: 20px; }
.sb-link span { flex: 1; }
.sb-badge {
  background: #ef4444; color: #fff; font-size: 10px; font-weight: 700;
  padding: 1px 6px; border-radius: 10px; flex-shrink: 0; font-style: normal;
}
.sb-badge.warn { background: #f59e0b; }
.sb-footer {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 14px; border-top: 1px solid rgba(255,255,255,.06);
  color: rgba(255,255,255,.3); font-size: 11px;
}
.online-dot { width: 7px; height: 7px; background: #22c55e; border-radius: 50%; flex-shrink: 0; animation: pulse 2s infinite; }
.main-content { flex: 1; overflow-y: auto; background: #f1f5f9; }
.main-content::-webkit-scrollbar { width: 5px; }
.main-content::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 4px; }

/* ── Stat Cards ──────────────────────────────────────── */
.stat-card {
  background: #fff; border-radius: var(--radius-card);
  border: 1px solid #e2e8f0; border-top: 3px solid var(--blue);
  padding: 16px 18px; transition: .15s; height: 100%;
}
.stat-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-1px); }
.stat-card.sc-green { border-top-color: #16a34a; }
.stat-card.sc-amber { border-top-color: #d97706; }
.stat-card.sc-red { border-top-color: #dc2626; }
.stat-card.sc-purple { border-top-color: #7c3aed; }
.stat-card.sc-navy { border-top-color: var(--navy); }
.sc-label { font-size: 11px; font-weight: 600; color: #64748b; margin-bottom: 6px; display: flex; align-items: center; gap: 4px; }
.sc-label i { font-size: 13px; }
.sc-val { font-size: 24px; font-weight: 800; color: #0f172a; line-height: 1; }
.sc-sub { font-size: 11px; margin-top: 5px; color: #94a3b8; }
.sc-sub.up { color: #16a34a; }
.sc-sub.down { color: #dc2626; }
.sc-sub.warn { color: #d97706; }

/* ── Progress Bars ───────────────────────────────────── */
.prg { background: #e2e8f0; border-radius: 10px; overflow: hidden; }
.prg-fill { border-radius: 10px; transition: width .4s; }
.prg-blue { background: linear-gradient(90deg,#2563eb,#60a5fa); }
.prg-green { background: linear-gradient(90deg,#16a34a,#4ade80); }
.prg-amber { background: linear-gradient(90deg,#d97706,#fbbf24); }
.prg-red { background: linear-gradient(90deg,#dc2626,#f87171); }

/* ── Page Header ─────────────────────────────────────── */
.page-header { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 20px; flex-wrap: wrap; gap: 10px; }
.page-title { font-size: 20px; font-weight: 800; color: #0f172a; }
.page-sub { font-size: 12px; color: #94a3b8; margin-top: 3px; }

/* ── Approval Rows ───────────────────────────────────── */
.appr-row { display: flex; align-items: center; gap: 12px; padding: 12px 18px; border-bottom: 1px solid #f1f5f9; transition: .1s; }
.appr-row:hover { background: #f8fafc; }
.appr-row:last-child { border-bottom: none; }
.appr-icon { width: 38px; height: 38px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 19px; flex-shrink: 0; }

/* ── Payroll Cards ───────────────────────────────────── */
.pay-card { background: #fff; border-radius: var(--radius-card); border: 1px solid #e2e8f0; margin-bottom: 14px; overflow: hidden; }
.pay-head { display: flex; align-items: center; justify-content: space-between; padding: 14px 18px; background: #f8fafc; border-bottom: 1px solid #f1f5f9; }
.pay-av { width: 38px; height: 38px; border-radius: 50%; color: #fff; display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700; flex-shrink: 0; }
.pay-items { display: grid; grid-template-columns: repeat(4,1fr); gap: 8px; padding: 14px 18px; }
.pay-item { background: #f8fafc; border-radius: 8px; padding: 8px 12px; }
.pay-item-label { font-size: 10px; color: #94a3b8; font-weight: 600; margin-bottom: 3px; }
.pay-item-val { font-size: 14px; font-weight: 700; color: #0f172a; }
.pay-item-val.pos { color: #16a34a; }
.pay-item-val.neg { color: #dc2626; }
.pay-foot { display: flex; align-items: center; justify-content: space-between; padding: 12px 18px; border-top: 1px solid #f1f5f9; }
.pay-total { font-size: 20px; font-weight: 800; color: var(--blue); }

/* ── HPP Bar ─────────────────────────────────────────── */
.hpp-bar { display: flex; border-radius: 8px; overflow: hidden; height: 24px; }
.hpp-seg { display: flex; align-items: center; justify-content: center; font-size: 10px; color: #fff; font-weight: 700; min-width: 20px; }

/* ── Summary Rows ────────────────────────────────────── */
.sum-row { display: flex; justify-content: space-between; align-items: center; padding: 9px 12px; border-radius: 8px; background: #f8fafc; margin-bottom: 6px; font-size: 13px; }
.sum-row.total { background: #f0fdf4; font-weight: 700; color: #14532d; }
.sum-row.loss  { background: #fef2f2; font-weight: 700; color: #991b1b; }
.sum-row.sub   { background: #eff6ff; font-weight: 600; color: #1e40af; }

/* ── Finance Hero ────────────────────────────────────── */
.fin-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: var(--radius-card); padding: 22px 26px; color: #fff; margin-bottom: 16px;
}
.fin-hero-label { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; color: rgba(255,255,255,.45); margin-bottom: 4px; }
.fin-hero-val { font-size: 22px; font-weight: 800; line-height: 1; }

/* ── Chart Bars ──────────────────────────────────────── */
.chart-col { flex: 1; display: flex; flex-direction: column; align-items: center; }
.chart-bars { width: 100%; display: flex; gap: 2px; align-items: flex-end; }
.chart-lbl { font-size: 10px; color: #94a3b8; margin-top: 4px; }

/* ── Employee Avatar ─────────────────────────────────── */
.emp-av { width: 32px; height: 32px; border-radius: 50%; color: #fff; display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 700; flex-shrink: 0; }

/* ── Confirm Modal Icon ──────────────────────────────── */
.confirm-icon { width: 50px; height: 50px; background: #fef2f2; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 24px; color: #dc2626; }

/* ── Toast Overrides ─────────────────────────────────── */
.toast { border-radius: 12px !important; font-size: 13px !important; font-family: 'Inter', sans-serif; }

/* =======================================================
   PETA SISTEM / BUSINESS FLOWCHART
   ======================================================= */

/* Hub Layout (Overview Tab) */
.hub-layout { display: grid; grid-template-columns: 1fr 60px 220px 60px 1fr; align-items: center; gap: 0; }
.hub-inputs, .hub-outputs { display: flex; flex-direction: column; gap: 10px; }
.hub-arrows { display: flex; flex-direction: column; align-items: center; justify-content: space-around; height: 100%; gap: 8px; padding: 20px 0; }
.hub-arrow { font-size: 22px; opacity: .45; }
.hub-center-card {
  background: linear-gradient(155deg, #0d2137 0%, #163b6a 60%, #1e5195 100%);
  border-radius: 20px; padding: 26px 20px; color: #fff; text-align: center;
  box-shadow: 0 12px 40px rgba(13,33,55,.4); position: relative;
}
.hub-center-card::before {
  content: ''; position: absolute; inset: 0; border-radius: 20px;
  background: linear-gradient(145deg, rgba(37,99,235,.25) 0%, transparent 50%);
  pointer-events: none;
}
.hub-ring {
  width: 64px; height: 64px; border-radius: 50%;
  background: rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px; font-size: 30px;
  box-shadow: 0 0 0 8px rgba(37,99,235,.12), 0 0 0 16px rgba(37,99,235,.05);
  border: 1px solid rgba(255,255,255,.15);
}
.hub-center-label { font-size: 20px; font-weight: 800; letter-spacing: .5px; }
.hub-center-sub { font-size: 11px; color: rgba(255,255,255,.5); margin: 4px 0 16px; }
.hub-kpi-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 14px; }
.hub-kpi { background: rgba(255,255,255,.08); border-radius: 9px; padding: 8px 10px; text-align: left; border: 1px solid rgba(255,255,255,.08); }
.hub-kpi-val { font-size: 15px; font-weight: 800; }
.hub-kpi-label { font-size: 9px; color: rgba(255,255,255,.4); margin-top: 1px; text-transform: uppercase; letter-spacing: .3px; }
.hub-badge { display: inline-flex; align-items: center; gap: 5px; background: rgba(37,99,235,.3); color: #93c5fd; font-size: 10px; font-weight: 600; padding: 4px 10px; border-radius: 20px; border: 1px solid rgba(37,99,235,.35); }
.hub-btn { background: rgba(255,255,255,.12); color: #fff; border: 1px solid rgba(255,255,255,.2); border-radius: 8px; padding: 8px; font-size: 12px; font-weight: 600; cursor: pointer; width: 100%; margin-top: 12px; transition: .15s; }
.hub-btn:hover { background: rgba(255,255,255,.2); }

/* Hub Module Cards */
.hub-module {
  background: #fff; border: 1.5px solid #e2e8f0; border-radius: 12px;
  padding: 11px 13px; cursor: pointer; transition: all .18s;
  display: flex; align-items: center; gap: 10px;
}
.hub-module:hover { border-color: var(--blue); box-shadow: 0 4px 16px rgba(37,99,235,.13); transform: translateX(3px); }
.hub-module.out:hover { transform: translateX(-3px); }
.hub-mod-icon { width: 36px; height: 36px; border-radius: 9px; display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.hub-mod-name { font-size: 12px; font-weight: 700; color: #0f172a; }
.hub-mod-sub { font-size: 10px; color: #94a3b8; margin-top: 1px; }
.hub-mod-arr { margin-left: auto; color: #cbd5e1; font-size: 13px; flex-shrink: 0; transition: .15s; }
.hub-module:hover .hub-mod-arr { color: var(--blue); }

/* Flow Steps (Department tabs) */
.flow-header { border-radius: 12px; padding: 14px 18px; margin-bottom: 18px; display: flex; align-items: center; gap: 12px; }
.flow-header-icon { width: 44px; height: 44px; border-radius: 11px; display: flex; align-items: center; justify-content: center; font-size: 22px; flex-shrink: 0; }
.flow-steps { display: flex; flex-wrap: wrap; align-items: flex-start; gap: 8px; margin-bottom: 18px; }
.flow-step {
  background: #fff; border: 1.5px solid #e2e8f0; border-radius: 13px;
  padding: 14px 13px; cursor: pointer; transition: all .18s;
  width: 145px; flex-shrink: 0; position: relative;
}
.flow-step:hover { border-color: var(--blue); box-shadow: 0 6px 20px rgba(37,99,235,.15); transform: translateY(-3px); }
.flow-step.clr-blue  { border-top: 3px solid #2563eb; }
.flow-step.clr-green { border-top: 3px solid #16a34a; }
.flow-step.clr-amber { border-top: 3px solid #d97706; }
.flow-step.clr-red   { border-top: 3px solid #dc2626; }
.flow-step.clr-purple{ border-top: 3px solid #7c3aed; }
.flow-step.clr-navy  { border-top: 3px solid #0d2137; }
.flow-step.clr-teal  { border-top: 3px solid #0d9488; }
.fs-num {
  position: absolute; top: -10px; left: 12px; width: 21px; height: 21px;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 800; color: #fff; border: 2.5px solid #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,.15);
}
.fs-icon { font-size: 22px; margin: 8px 0 7px; }
.fs-title { font-size: 12px; font-weight: 700; color: #0f172a; margin-bottom: 3px; line-height: 1.3; }
.fs-sub { font-size: 10px; color: #94a3b8; margin-bottom: 9px; line-height: 1.4; }
.fs-link { font-size: 10px; font-weight: 700; color: var(--blue); display: flex; align-items: center; gap: 3px; }
.flow-arr { color: #d1d5db; font-size: 24px; align-self: center; flex-shrink: 0; margin-top: 12px; line-height: 1; }
.flow-info-box { border-radius: 11px; padding: 14px 16px; }

/* ── Utilities ───────────────────────────────────────── */
.text-muted { color: #94a3b8 !important; }
.fw-800 { font-weight: 800; }
.cursor-pointer { cursor: pointer; }
.page-wrap { padding: 22px; }

/* ── Responsive ──────────────────────────────────────── */
@media(max-width: 992px) {
  .hub-layout { grid-template-columns: 1fr; gap: 12px; }
  .hub-center-card { order: -1; }
  .pay-items { grid-template-columns: repeat(2,1fr); }
}
@media(max-width: 768px) {
  :root { --sb-w: 56px; }
  .sidebar .sb-section-label, .sidebar .sb-link span, .sidebar .sb-badge, .sb-footer-text { display: none; }
  .sidebar .sb-link { justify-content: center; padding: 9px 0; }
  .page-wrap { padding: 14px; }
  .tb-clock, .btn-tb-pill { display: none !important; }
}

@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.45} }
