/* ══════════════════════════════════════════════════
   EMPLOYER DASHBOARD CSS
══════════════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

.dash-body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: #f4f6f8;
  min-height: 100vh;
}

.hidden { display: none !important; }

/* ── TOPBAR ─────────────────────────────────────── */
.dash-topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 56px;
  background: #fff;
  border-bottom: 1px solid #e8e8e8;
  display: flex;
  align-items: center;
  padding: 0 20px;
  gap: 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
}

.dash-logo {
  font-size: 17px;
  font-weight: 800;
  color: #0a66c2;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
}

.dash-topbar-right {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 12px;
}

.dash-post-btn {
  background: #0a66c2;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 7px 16px;
  border-radius: 8px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: background .2s;
}

.dash-post-btn:hover { background: #004182; }

.dash-icon-btn {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: #f0f4f8;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #555;
  font-size: 16px;
  position: relative;
  transition: background .2s;
}

.dash-icon-btn:hover { background: #e0e8f0; color: #0a66c2; }

.dash-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: #e53935;
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  min-width: 16px;
  height: 16px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 3px;
  line-height: 1;
}

.dash-avatar-wrap { position: relative; }

.dash-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #0a66c2;
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.dash-avatar-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0,0,0,.12);
  min-width: 160px;
  overflow: hidden;
  z-index: 200;
}

.dash-avatar-wrap:hover .dash-avatar-menu { display: block; }

.dash-avatar-menu a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 11px 16px;
  font-size: 14px;
  color: #333;
  text-decoration: none;
  transition: background .15s;
}

.dash-avatar-menu a:hover { background: #f0f4f8; }

/* ── LAYOUT ─────────────────────────────────────── */
.dash-layout {
  display: grid;
  grid-template-columns: 230px 1fr;
  min-height: calc(100vh - 56px);
}

/* ── SIDEBAR ────────────────────────────────────── */
.dash-sidebar {
  background: #fff;
  border-right: 1px solid #e8e8e8;
  display: flex;
  flex-direction: column;
  position: sticky;
  top: 56px;
  height: calc(100vh - 56px);
  overflow-y: auto;
}

.sidebar-profile {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 18px 16px 14px;
  border-bottom: 1px solid #f0f0f0;
}

.sp-avatar {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, #0a66c2, #004182);
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.sp-info strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: #191919;
}

.sp-info span {
  font-size: 11px;
  color: #888;
  text-transform: capitalize;
}

.sidebar-nav {
  flex: 1;
  padding: 8px 0;
}

.snav-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 500;
  color: #444;
  cursor: pointer;
  border-left: 3px solid transparent;
  transition: all .15s;
  text-decoration: none;
}

.snav-item i { width: 18px; text-align: center; color: #888; font-size: 14px; }

.snav-item:hover {
  background: #f0f4f8;
  color: #0a66c2;
}

.snav-item:hover i { color: #0a66c2; }

.snav-item.active {
  background: #e8f0fe;
  color: #0a66c2;
  border-left-color: #0a66c2;
  font-weight: 700;
}

.snav-item.active i { color: #0a66c2; }

.snav-count {
  margin-left: auto;
  background: #f0f4f8;
  color: #555;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 10px;
  min-width: 20px;
  text-align: center;
}

.snav-count.unread { background: #e53935; color: #fff; }

.sidebar-footer {
  padding: 12px 16px;
  border-top: 1px solid #f0f0f0;
  display: flex;
  gap: 12px;
}

.sidebar-footer a {
  font-size: 13px;
  color: #888;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: color .15s;
}

.sidebar-footer a:hover { color: #0a66c2; }

/* ── MAIN ───────────────────────────────────────── */
.dash-main {
  padding: 24px;
  min-width: 0;
}

/* ── STATS STRIP ────────────────────────────────── */
.stats-strip {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.stat-chip {
  flex: 1;
  min-width: 90px;
  background: #fff;
  border-radius: 12px;
  padding: 14px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  border: 1.5px solid #e8e8e8;
  transition: all .2s;
}

.stat-chip:hover { transform: translateY(-2px); box-shadow: 0 6px 16px rgba(0,0,0,.08); }

.stat-chip i  { font-size: 18px; }
.stat-chip span { font-size: 22px; font-weight: 800; line-height: 1; color: #191919; }
.stat-chip label { font-size: 11px; color: #888; font-weight: 500; cursor: pointer; }

.stat-chip.blue   i { color: #0a66c2; }
.stat-chip.yellow i { color: #f3a000; }
.stat-chip.grey   i { color: #888; }
.stat-chip.green  i { color: #2e7d32; }
.stat-chip.orange i { color: #e65100; }
.stat-chip.purple i { color: #6a1b9a; }
.stat-chip.teal   i { color: #00838f; }
.stat-chip.red    i { color: #c62828; }

/* ── SECTION WRAPPER ────────────────────────────── */
.dsec { animation: fadeIn .2s; }

.dsec-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.dsec-header h2 {
  font-size: 20px;
  font-weight: 800;
  color: #191919;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 3px;
}

.dsec-header h2 i { color: #0a66c2; }
.dsec-header p  { font-size: 14px; color: #888; }

.dsec-btn {
  background: #0a66c2;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 9px 18px;
  border-radius: 8px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  transition: background .2s;
  border: none;
  cursor: pointer;
}

.dsec-btn:hover { background: #004182; }

.dsec-btn-ghost {
  font-size: 13px;
  font-weight: 700;
  color: #0a66c2;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 18px;
  border: 1.5px solid #0a66c2;
  border-radius: 8px;
  transition: all .2s;
}

.dsec-btn-ghost:hover { background: #e8f0fe; }

.dsec-filter {
  padding: 8px 12px;
  border: 1.5px solid #ddd;
  border-radius: 8px;
  font-size: 13px;
  background: #fff;
  outline: none;
  cursor: pointer;
}

/* ── JOB LIST ───────────────────────────────────── */
.job-list { display: flex; flex-direction: column; gap: 10px; }

.jl-row {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  border: 1.5px solid #e8e8e8;
  border-radius: 12px;
  padding: 14px 16px;
  transition: all .2s;
}

.jl-row:hover { border-color: #0a66c2; box-shadow: 0 4px 12px rgba(10,102,194,.08); }

.jl-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #e8f0fe;
  color: #0a66c2;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.jl-icon.blue   { background: #fff3e0; color: #e65100; }
.jl-icon.yellow { background: #fff8e1; color: #f9a825; }
.jl-icon.grey   { background: #f5f5f5; color: #888; }

.jl-info { flex: 1; min-width: 0; }

.jl-info h4 {
  font-size: 15px;
  font-weight: 700;
  color: #191919;
  margin-bottom: 5px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.jl-meta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 12px;
  color: #888;
}

.jl-meta span { display: flex; align-items: center; gap: 4px; }
.jl-meta i { color: #aaa; font-size: 11px; }

.urgent-tag { color: #c62828 !important; font-weight: 700; }

.jl-salary {
  font-size: 13px;
  font-weight: 700;
  color: #2e7d32;
  white-space: nowrap;
  flex-shrink: 0;
}

.jl-actions { display: flex; gap: 6px; flex-shrink: 0; }

.jl-btn {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  text-decoration: none;
  transition: all .15s;
  border: none;
  cursor: pointer;
}

.jl-btn.view  { background: #e8f0fe; color: #0a66c2; }
.jl-btn.edit  { background: #fff8e1; color: #f9a825; }
.jl-btn.close { background: #fce4ec; color: #c62828; }
.jl-btn.msg   { background: #e8f5e9; color: #2e7d32; }

.jl-btn:hover { filter: brightness(.9); transform: scale(1.08); }

/* ── STATUS PILLS ───────────────────────────────── */
.status-pill {
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  white-space: nowrap;
}

.status-pill.active,
.status-pill.paid             { background: #e6f4ea; color: #2e7d32; }
.status-pill.draft,
.status-pill.pending          { background: #fff8e1; color: #f9a825; }
.status-pill.closed,
.status-pill.failed           { background: #f5f5f5; color: #888; }
.status-pill.shortlisted      { background: #e8f0fe; color: #0a66c2; }
.status-pill.interview_scheduled,
.status-pill.interview_accepted { background: #f3e5f5; color: #6a1b9a; }
.status-pill.offer_sent       { background: #e0f7fa; color: #00838f; }
.status-pill.hired            { background: #e6f4ea; color: #1b5e20; }
.status-pill.rejected,
.status-pill.interview_rejected { background: #fce4ec; color: #c62828; }
.status-pill.withdrawn        { background: #f5f5f5; color: #aaa; }

/* ── TABLES ─────────────────────────────────────── */
.table-wrap { overflow-x: auto; border-radius: 12px; border: 1.5px solid #e8e8e8; }

.dash-table { width: 100%; border-collapse: collapse; background: #fff; }

.dash-table thead th {
  background: #f7f9fc;
  font-size: 12px;
  font-weight: 700;
  color: #888;
  text-transform: uppercase;
  letter-spacing: .4px;
  padding: 12px 14px;
  text-align: left;
  border-bottom: 1px solid #e8e8e8;
}

.dash-table tbody td {
  padding: 12px 14px;
  font-size: 13px;
  color: #333;
  border-bottom: 1px solid #f0f0f0;
  vertical-align: middle;
}

.dash-table tbody tr:last-child td { border-bottom: none; }
.dash-table tbody tr:hover td { background: #f7f9fc; }

.cand-cell { display: flex; align-items: center; gap: 10px; }

.cand-avatar-sm {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #0a66c2;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cand-sub { font-size: 11px; color: #888; }

/* ── CANDIDATE CARDS ────────────────────────────── */
.cand-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
}

.cand-card {
  background: #fff;
  border: 1.5px solid #e8e8e8;
  border-radius: 14px;
  padding: 22px 18px;
  text-align: center;
  transition: all .2s;
}

.cand-card:hover { border-color: #0a66c2; box-shadow: 0 6px 18px rgba(10,102,194,.10); }

.cand-card-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0a66c2, #004182);
  color: #fff;
  font-size: 22px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}

.cand-card h4 { font-size: 15px; font-weight: 700; color: #191919; margin-bottom: 5px; }
.cand-for     { font-size: 12px; color: #888; margin-bottom: 4px; }
.cand-date    { font-size: 11px; color: #aaa; margin-bottom: 14px; }
.cand-note    { font-size: 12px; color: #666; font-style: italic; margin-bottom: 4px; }

.cand-card-actions { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; }

.cand-btn {
  font-size: 12px;
  font-weight: 700;
  padding: 7px 14px;
  border-radius: 8px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: all .2s;
}

.cand-btn.primary { background: #0a66c2; color: #fff; }
.cand-btn.primary:hover { background: #004182; }
.cand-btn.ghost   { background: #f0f4f8; color: #0a66c2; }
.cand-btn.ghost:hover { background: #e0e8f0; }

/* ── MESSAGES ───────────────────────────────────── */
.msg-list { display: flex; flex-direction: column; gap: 8px; }

.msg-row {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border: 1.5px solid #e8e8e8;
  border-radius: 12px;
  padding: 14px 16px;
  transition: all .2s;
}

.msg-row.unread  { border-color: #0a66c2; background: #f8fbff; }
.msg-row:hover   { box-shadow: 0 4px 12px rgba(0,0,0,.06); }

.msg-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #0a66c2;
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.msg-body { flex: 1; min-width: 0; }

.msg-top {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 3px;
}

.msg-top strong { font-size: 14px; color: #191919; }
.msg-time       { font-size: 11px; color: #aaa; margin-left: auto; }

.unread-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #0a66c2;
  flex-shrink: 0;
}

.msg-job-tag {
  font-size: 11px;
  color: #0a66c2;
  font-weight: 600;
  margin-bottom: 3px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.msg-preview { font-size: 13px; color: #666; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; }

/* ── NOTIFICATIONS ──────────────────────────────── */
.notif-list { display: flex; flex-direction: column; gap: 8px; }

.notif-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #fff;
  border: 1.5px solid #e8e8e8;
  border-radius: 12px;
  padding: 14px 16px;
}

.notif-row.unread { border-color: #0a66c2; background: #f8fbff; }

.notif-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
}

.notif-icon.info    { background: #e8f0fe; color: #0a66c2; }
.notif-icon.success { background: #e6f4ea; color: #2e7d32; }
.notif-icon.warning { background: #fff8e1; color: #f9a825; }
.notif-icon.alert   { background: #fce4ec; color: #c62828; }

.notif-body { flex: 1; }
.notif-body strong { font-size: 14px; color: #191919; display: block; margin-bottom: 3px; }
.notif-body p      { font-size: 13px; color: #666; margin-bottom: 4px; }
.notif-time        { font-size: 11px; color: #aaa; }

/* ── WALLET ─────────────────────────────────────── */
.wallet-card {
  background: linear-gradient(135deg, #0a3060, #0a66c2);
  border-radius: 16px;
  padding: 28px 28px;
  color: #fff;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.wallet-balance-block { display: flex; align-items: center; gap: 18px; }

.wallet-icon {
  width: 56px;
  height: 56px;
  background: rgba(255,255,255,.15);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.wallet-label { font-size: 13px; opacity: .8; margin-bottom: 4px; }
.wallet-amount { font-size: 36px; font-weight: 900; letter-spacing: -.5px; }

.wallet-btn-row { display: flex; gap: 10px; flex-wrap: wrap; }

.w-btn {
  font-size: 13px;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 10px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: all .2s;
}

.w-btn.add      { background: #fff; color: #0a66c2; }
.w-btn.add:hover{ background: #e8f0fe; }
.w-btn.withdraw { background: rgba(255,255,255,.15); color: #fff; border: 1.5px solid rgba(255,255,255,.4); }
.w-btn.withdraw:hover { background: rgba(255,255,255,.25); }

.sub-heading {
  font-size: 16px;
  font-weight: 700;
  color: #191919;
  margin-bottom: 14px;
}

.txn-list { display: flex; flex-direction: column; gap: 8px; }

.txn-row {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border: 1.5px solid #e8e8e8;
  border-radius: 10px;
  padding: 12px 16px;
}

.txn-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}

.txn-icon.credit { background: #e6f4ea; color: #2e7d32; }
.txn-icon.debit  { background: #fce4ec; color: #c62828; }

.txn-info { flex: 1; }
.txn-info strong { display: block; font-size: 13px; color: #191919; margin-bottom: 2px; }
.txn-info span   { font-size: 11px; color: #aaa; }

.txn-amount { font-size: 15px; font-weight: 800; white-space: nowrap; }
.txn-amount.credit { color: #2e7d32; }
.txn-amount.debit  { color: #c62828; }

/* ── SUBSCRIPTION ───────────────────────────────── */
.current-plan-card {
  background: #fff;
  border: 2px solid #0a66c2;
  border-radius: 16px;
  padding: 24px 24px;
  margin-bottom: 12px;
}

.cp-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.cp-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
}

.cp-badge.active { background: #e6f4ea; color: #2e7d32; }

.cp-days { font-size: 13px; color: #888; font-weight: 600; }

.cp-name { font-size: 22px; font-weight: 900; color: #191919; margin-bottom: 12px; }

.cp-meta-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 13px;
  color: #666;
  margin-bottom: 14px;
}

.cp-meta-row span { display: flex; align-items: center; gap: 6px; }
.cp-meta-row i    { color: #0a66c2; }

.cp-features { display: flex; flex-wrap: wrap; gap: 8px; }

.cp-feat {
  background: #e8f0fe;
  color: #0a66c2;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.no-plan-banner {
  background: #fff8e1;
  border: 1.5px solid #f3a000;
  border-radius: 14px;
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}

.no-plan-banner i  { font-size: 32px; color: #f3a000; }
.no-plan-banner h3 { font-size: 16px; font-weight: 700; color: #191919; margin-bottom: 4px; }
.no-plan-banner p  { font-size: 13px; color: #666; }

.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}

.plan-card {
  background: #fff;
  border: 1.5px solid #e8e8e8;
  border-radius: 14px;
  padding: 22px 18px;
  position: relative;
  transition: all .2s;
}

.plan-card:hover { border-color: #0a66c2; box-shadow: 0 6px 20px rgba(10,102,194,.10); }
.plan-card.featured { border-color: #0a66c2; box-shadow: 0 4px 20px rgba(10,102,194,.15); }

.plan-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: #0a66c2;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 14px;
  border-radius: 20px;
  white-space: nowrap;
}

.plan-card h4 { font-size: 16px; font-weight: 800; color: #191919; margin-bottom: 8px; margin-top: 8px; }

.plan-price {
  font-size: 28px;
  font-weight: 900;
  color: #0a66c2;
  margin-bottom: 8px;
}

.plan-price span { font-size: 13px; font-weight: 500; color: #888; }

.plan-posts {
  font-size: 13px;
  font-weight: 600;
  color: #2e7d32;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.plan-feats {
  list-style: none;
  margin-bottom: 16px;
}

.plan-feats li {
  font-size: 12px;
  color: #555;
  padding: 3px 0;
  display: flex;
  align-items: center;
  gap: 6px;
}

.plan-feats li i { color: #2e7d32; font-size: 10px; }

.plan-btn {
  display: block;
  text-align: center;
  background: #f0f4f8;
  color: #0a66c2;
  font-size: 13px;
  font-weight: 700;
  padding: 10px;
  border-radius: 8px;
  text-decoration: none;
  transition: all .2s;
}

.plan-btn:hover          { background: #e0e8f0; }
.plan-btn.featured       { background: #0a66c2; color: #fff; }
.plan-btn.featured:hover { background: #004182; }

/* ── EMPTY STATE ────────────────────────────────── */
.empty-state {
  text-align: center;
  padding: 56px 20px;
  color: #bbb;
}

.empty-state i  { font-size: 48px; display: block; margin-bottom: 16px; }
.empty-state h3 { font-size: 18px; font-weight: 700; color: #888; margin-bottom: 8px; }
.empty-state p  { font-size: 14px; color: #aaa; }

/* ── ANIMATION ──────────────────────────────────── */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── RESPONSIVE ─────────────────────────────────── */
@media (max-width: 1024px) {
  .dash-layout { grid-template-columns: 200px 1fr; }
  .dash-post-btn span { display: none; }
}

@media (max-width: 768px) {
  .dash-layout { grid-template-columns: 1fr; }
  .dash-sidebar {
    position: fixed;
    left: -260px;
    top: 56px;
    width: 260px;
    height: calc(100vh - 56px);
    z-index: 500;
    transition: left .25s;
    box-shadow: 4px 0 16px rgba(0,0,0,.12);
  }
  .dash-sidebar.open { left: 0; }
  /* Topbar: hide heavy action buttons, show hamburger */
  .dash-topbar { padding: 0 12px; gap: 8px; }
  .dash-post-btn { display: none; }
  .dash-hamburger { display: flex !important; }
  /* Stats strip */
  .stats-strip { gap: 6px; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 4px; }
  .stat-chip { min-width: 72px; padding: 10px 8px; flex-shrink: 0; }
  .stat-chip span { font-size: 18px; }
  /* Grids */
  .hsc-grid { grid-template-columns: repeat(2,1fr); }
  .jl-salary { display: none; }
  .cand-grid { grid-template-columns: 1fr; }
  .plans-grid { grid-template-columns: 1fr; }
  /* Section header */
  .sec-hdr { flex-direction: column; align-items: flex-start; gap: 10px; }
  .sec-hdr div, .sec-hdr a { flex-wrap: wrap; }
  /* Tables */
  .table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  /* Main content padding */
  .dash-main { padding: 16px 12px; }
  /* Avatar menu */
  .dash-avatar-menu { right: 0; left: auto; }
  /* Overlay shown only when sidebar is open (JS controls display) */
}

@media (max-width: 480px) {
  .hsc-grid { grid-template-columns: 1fr; }
  .dash-topbar-right { gap: 6px; }
  .dash-icon-btn { width: 32px; height: 32px; font-size: 15px; }
}
