/* ─── CSS Variables ─────────────────────────────────── */
:root {
  --bg: #0d0f17;
  --surface: #13151f;
  --surface2: #1a1d2e;
  --surface3: #20253a;
  --border: rgba(255,255,255,0.07);
  --border-hover: rgba(255,255,255,0.14);
  --text: #e8eaf0;
  --text-muted: #7a7f9a;
  --text-dim: #4a4f6a;
  --accent: #e94560;
  --accent-hover: #ff5572;
  --accent-soft: rgba(233,69,96,0.12);
  --green: #00c896;
  --green-soft: rgba(0,200,150,0.1);
  --blue: #4f8ef7;
  --blue-soft: rgba(79,142,247,0.1);
  --amber: #f5a623;
  --amber-soft: rgba(245,166,35,0.1);
  --purple: #a78bfa;
  --sidebar-w: 230px;
  --radius: 10px;
  --radius-sm: 6px;
  --shadow: 0 4px 24px rgba(0,0,0,0.4);
  --font: 'DM Sans', sans-serif;
  --font-mono: 'DM Mono', monospace;
  --font-display: 'Syne', sans-serif;
  --transition: all 0.2s ease;
}

/* ─── Reset ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 15px; }
body { font-family: var(--font); background: var(--bg); color: var(--text); min-height: 100vh; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: var(--font); border: none; background: none; }
input, select, textarea { font-family: var(--font); }
.hidden { display: none !important; }

/* ─── Scrollbar ──────────────────────────────────────── */
::-webkit-scrollbar { width: 5px; height: 5px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--surface3); border-radius: 10px; }

/* ─── LOGIN ──────────────────────────────────────────── */
.login-page {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden; background: var(--bg);
}
.login-bg { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.login-orb {
  position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.25;
  animation: float 8s ease-in-out infinite;
}
.orb1 { width: 500px; height: 500px; background: #e94560; top: -200px; left: -100px; animation-delay: 0s; }
.orb2 { width: 400px; height: 400px; background: #4f8ef7; bottom: -150px; right: -100px; animation-delay: 3s; }
.orb3 { width: 300px; height: 300px; background: #a78bfa; top: 50%; left: 50%; transform: translate(-50%,-50%); animation-delay: 6s; }
@keyframes float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-30px) scale(1.05); }
}
.orb3 { animation: float2 10s ease-in-out infinite; }
@keyframes float2 {
  0%, 100% { transform: translate(-50%,-50%) scale(1); }
  50% { transform: translate(-50%,-55%) scale(1.1); }
}

.login-card {
  position: relative; z-index: 1; width: 420px;
  background: rgba(19,21,31,0.85); backdrop-filter: blur(20px);
  border: 1px solid var(--border); border-radius: 20px;
  padding: 44px 40px; box-shadow: 0 30px 80px rgba(0,0,0,0.5);
  animation: slideUp 0.5s ease forwards;
}
@keyframes slideUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.login-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 28px; }
.brand-icon { width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; }
.brand-icon.sm { width: 28px; height: 28px; }
.brand-name { font-family: var(--font-display); font-size: 1.4rem; font-weight: 800; letter-spacing: -0.5px; }

.login-title { font-family: var(--font-display); font-size: 1.7rem; font-weight: 800; letter-spacing: -0.5px; margin-bottom: 6px; }
.login-sub { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 28px; }

.login-form { display: flex; flex-direction: column; gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 0.82rem; font-weight: 500; color: var(--text-muted); letter-spacing: 0.3px; }
.form-group input, .form-group select, .form-group textarea {
  background: var(--surface2); border: 1px solid var(--border);
  color: var(--text); border-radius: var(--radius-sm); padding: 10px 14px;
  font-size: 0.9rem; transition: var(--transition); outline: none; width: 100%;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft);
}
.form-group select { appearance: none; cursor: pointer; }
.form-group textarea { resize: vertical; min-height: 80px; }

.input-eye-wrap { position: relative; }
.input-eye-wrap input { padding-right: 44px; }
.eye-btn { position: absolute; right: 12px; top: 50%; transform: translateY(-50%); color: var(--text-muted); transition: color 0.2s; padding: 4px; }
.eye-btn:hover { color: var(--text); }

.login-error { background: rgba(233,69,96,0.12); border: 1px solid rgba(233,69,96,0.3); color: #ff6b81; border-radius: var(--radius-sm); padding: 10px 14px; font-size: 0.85rem; }

.login-hint { margin-top: 20px; padding: 14px; background: var(--surface2); border-radius: var(--radius-sm); border: 1px solid var(--border); }
.login-hint p { font-size: 0.8rem; color: var(--text-muted); text-align: center; }
.login-hint code { background: var(--surface3); padding: 2px 6px; border-radius: 4px; color: var(--accent); font-family: var(--font-mono); font-size: 0.78rem; }

/* ─── BUTTONS ────────────────────────────────────────── */
.btn-primary {
  background: var(--accent); color: #fff; border-radius: var(--radius-sm);
  padding: 11px 20px; font-size: 0.9rem; font-weight: 600;
  display: inline-flex; align-items: center; gap: 8px; transition: var(--transition);
  border: 1px solid transparent;
}
.btn-primary:hover { background: var(--accent-hover); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(233,69,96,0.35); }
.btn-primary:active { transform: translateY(0); }
.btn-primary.btn-full { width: 100%; justify-content: center; }
.btn-primary:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

.btn-secondary {
  background: var(--surface2); color: var(--text); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 10px 18px; font-size: 0.88rem; font-weight: 500;
  display: inline-flex; align-items: center; gap: 7px; transition: var(--transition);
}
.btn-secondary:hover { background: var(--surface3); border-color: var(--border-hover); }

.btn-ghost {
  color: var(--text-muted); padding: 8px 12px; border-radius: var(--radius-sm); font-size: 0.85rem;
  display: inline-flex; align-items: center; gap: 6px; transition: var(--transition);
}
.btn-ghost:hover { background: var(--surface2); color: var(--text); }

.btn-danger { background: rgba(233,69,96,0.1); color: var(--accent); border: 1px solid rgba(233,69,96,0.2); border-radius: var(--radius-sm); padding: 8px 14px; font-size: 0.83rem; font-weight: 500; display: inline-flex; align-items: center; gap: 6px; transition: var(--transition); }
.btn-danger:hover { background: var(--accent); color: #fff; }

.btn-success { background: var(--green-soft); color: var(--green); border: 1px solid rgba(0,200,150,0.2); border-radius: var(--radius-sm); padding: 8px 14px; font-size: 0.83rem; font-weight: 500; display: inline-flex; align-items: center; gap: 6px; transition: var(--transition); }
.btn-success:hover { background: var(--green); color: #fff; }

.btn-sm { padding: 6px 12px; font-size: 0.8rem; }
.btn-icon { width: 34px; height: 34px; padding: 0; justify-content: center; }

/* ─── APP SHELL ──────────────────────────────────────── */
.app-shell { display: flex; min-height: 100vh; }

/* ─── SIDEBAR ────────────────────────────────────────── */
.sidebar {
  width: var(--sidebar-w); background: var(--surface); border-right: 1px solid var(--border);
  display: flex; flex-direction: column; position: fixed; top: 0; left: 0; height: 100vh;
  z-index: 100; transition: width 0.25s ease;
  overflow: hidden;
}
.sidebar.collapsed { width: 62px; }
.sidebar.collapsed .nav-item span,
.sidebar.collapsed .nav-section-label,
.sidebar.collapsed .user-info,
.sidebar.collapsed .brand-name { display: none; }
.sidebar.collapsed .nav-item { justify-content: center; padding: 10px; }
.sidebar.collapsed .user-chip { justify-content: center; }

.sidebar-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 16px 16px; border-bottom: 1px solid var(--border);
  min-height: 64px;
}
.sidebar-brand { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 800; font-size: 1.1rem; }
.sidebar-toggle { width: 32px; height: 32px; border-radius: var(--radius-sm); color: var(--text-muted); display: flex; align-items: center; justify-content: center; transition: var(--transition); flex-shrink: 0; }
.sidebar-toggle:hover { background: var(--surface2); color: var(--text); }

.sidebar-nav { padding: 12px 8px; flex: 1; overflow-y: auto; }
.nav-section-label { font-size: 0.68rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: var(--text-dim); padding: 10px 10px 5px; }
.nav-item {
  display: flex; align-items: center; gap: 10px; padding: 9px 12px;
  border-radius: var(--radius-sm); color: var(--text-muted); font-size: 0.88rem; font-weight: 500;
  transition: var(--transition); margin-bottom: 2px; white-space: nowrap;
}
.nav-item:hover { background: var(--surface2); color: var(--text); }
.nav-item.active { background: var(--accent-soft); color: var(--accent); }
.nav-item svg { flex-shrink: 0; }

.sidebar-footer { padding: 12px 8px; border-top: 1px solid var(--border); display: flex; align-items: center; gap: 8px; }
.user-chip { display: flex; align-items: center; gap: 10px; flex: 1; min-width: 0; padding: 8px; border-radius: var(--radius-sm); }
.user-avatar { width: 32px; height: 32px; border-radius: 50%; background: var(--accent); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.85rem; flex-shrink: 0; }
.user-info { min-width: 0; }
.user-name { font-size: 0.83rem; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.user-role { font-size: 0.72rem; color: var(--text-muted); }
.logout-btn { width: 32px; height: 32px; border-radius: var(--radius-sm); color: var(--text-muted); display: flex; align-items: center; justify-content: center; transition: var(--transition); flex-shrink: 0; }
.logout-btn:hover { background: var(--accent-soft); color: var(--accent); }

/* ─── MAIN CONTENT ───────────────────────────────────── */
.main-content { margin-left: var(--sidebar-w); flex: 1; min-width: 0; padding: 32px; transition: margin-left 0.25s ease; }
.sidebar.collapsed ~ .main-content, .sidebar.collapsed + .main-content { margin-left: 62px; }

/* ─── PAGE HEADER ────────────────────────────────────── */
.page-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 28px; flex-wrap: wrap; gap: 12px; }
.page-title { font-family: var(--font-display); font-size: 1.6rem; font-weight: 800; letter-spacing: -0.5px; }
.page-subtitle { color: var(--text-muted); font-size: 0.85rem; margin-top: 2px; }

/* ─── STAT CARDS ─────────────────────────────────────── */
.stats-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 16px; margin-bottom: 28px; }
.stat-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 20px; display: flex; flex-direction: column; gap: 12px; transition: var(--transition);
  position: relative; overflow: hidden;
}
.stat-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--card-accent, var(--accent)); }
.stat-card:hover { border-color: var(--border-hover); transform: translateY(-2px); box-shadow: var(--shadow); }
.stat-icon { width: 40px; height: 40px; border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; background: var(--card-icon-bg, var(--accent-soft)); color: var(--card-accent, var(--accent)); }
.stat-value { font-size: 1.8rem; font-weight: 700; font-family: var(--font-display); letter-spacing: -1px; line-height: 1; }
.stat-label { font-size: 0.8rem; color: var(--text-muted); font-weight: 500; }

/* ─── TABLE ──────────────────────────────────────────── */
.table-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.table-card-header { display: flex; align-items: center; justify-content: space-between; padding: 18px 20px; border-bottom: 1px solid var(--border); gap: 12px; flex-wrap: wrap; }
.table-card-title { font-weight: 700; font-size: 1rem; }
.table-wrap { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; }
thead tr { background: var(--surface2); }
th { padding: 10px 16px; text-align: left; font-size: 0.75rem; font-weight: 600; color: var(--text-muted); letter-spacing: 0.5px; text-transform: uppercase; white-space: nowrap; }
td { padding: 12px 16px; font-size: 0.87rem; border-bottom: 1px solid var(--border); vertical-align: middle; }
tr:last-child td { border-bottom: none; }
tbody tr:hover td { background: rgba(255,255,255,0.02); }

/* ─── SEARCH / FILTER BAR ────────────────────────────── */
.search-bar { position: relative; }
.search-bar input { padding-left: 36px; min-width: 220px; }
.search-bar svg { position: absolute; left: 10px; top: 50%; transform: translateY(-50%); color: var(--text-muted); pointer-events: none; }

/* ─── BADGES ─────────────────────────────────────────── */
.badge { display: inline-flex; align-items: center; gap: 4px; padding: 3px 8px; border-radius: 20px; font-size: 0.74rem; font-weight: 600; white-space: nowrap; }
.badge-green { background: var(--green-soft); color: var(--green); }
.badge-red { background: var(--accent-soft); color: var(--accent); }
.badge-blue { background: var(--blue-soft); color: var(--blue); }
.badge-amber { background: var(--amber-soft); color: var(--amber); }
.badge-purple { background: rgba(167,139,250,0.1); color: var(--purple); }
.badge-dim { background: rgba(255,255,255,0.05); color: var(--text-muted); }

/* ─── MODAL ──────────────────────────────────────────── */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.6); backdrop-filter: blur(4px);
  z-index: 1000; display: flex; align-items: center; justify-content: center; padding: 20px;
  animation: fadeIn 0.15s ease;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.modal-box {
  background: var(--surface); border: 1px solid var(--border); border-radius: 16px;
  width: 100%; max-width: 560px; max-height: 90vh; display: flex; flex-direction: column;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5); animation: modalIn 0.2s ease;
}
.modal-box.modal-lg { max-width: 780px; }
.modal-box.modal-xl { max-width: 960px; }
@keyframes modalIn { from { opacity: 0; transform: scale(0.95) translateY(10px); } to { opacity: 1; transform: scale(1) translateY(0); } }
.modal-header { display: flex; align-items: center; justify-content: space-between; padding: 20px 24px 16px; border-bottom: 1px solid var(--border); }
.modal-header h3 { font-size: 1.05rem; font-weight: 700; }
.modal-close { width: 30px; height: 30px; border-radius: var(--radius-sm); color: var(--text-muted); display: flex; align-items: center; justify-content: center; transition: var(--transition); }
.modal-close:hover { background: var(--surface2); color: var(--text); }
.modal-body { padding: 20px 24px 24px; overflow-y: auto; }

/* ─── FORM GRID ──────────────────────────────────────── */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-grid .full { grid-column: 1 / -1; }
.form-actions { display: flex; gap: 10px; justify-content: flex-end; margin-top: 20px; border-top: 1px solid var(--border); padding-top: 18px; }
.section-divider { border: none; border-top: 1px solid var(--border); margin: 18px 0; }
.section-title { font-size: 0.8rem; font-weight: 600; color: var(--text-muted); letter-spacing: 0.5px; text-transform: uppercase; margin-bottom: 12px; }

/* ─── EMPTY STATE ────────────────────────────────────── */
.empty-state { display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 60px 20px; color: var(--text-muted); text-align: center; gap: 12px; }
.empty-state svg { opacity: 0.3; }
.empty-state h3 { font-size: 1rem; color: var(--text); }
.empty-state p { font-size: 0.85rem; max-width: 320px; }

/* ─── TOAST ──────────────────────────────────────────── */
.toast-container { position: fixed; bottom: 24px; right: 24px; z-index: 2000; display: flex; flex-direction: column; gap: 8px; }
.toast {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 12px 16px; font-size: 0.87rem; display: flex; align-items: center; gap: 10px;
  box-shadow: var(--shadow); animation: toastIn 0.3s ease; min-width: 280px; max-width: 380px;
}
.toast.success { border-color: rgba(0,200,150,0.3); }
.toast.error { border-color: rgba(233,69,96,0.3); }
.toast.info { border-color: rgba(79,142,247,0.3); }
@keyframes toastIn { from { opacity: 0; transform: translateX(20px); } to { opacity: 1; transform: translateX(0); } }
@keyframes toastOut { to { opacity: 0; transform: translateX(20px); } }

/* ─── AVATAR CHIP ────────────────────────────────────── */
.emp-chip { display: flex; align-items: center; gap: 10px; }
.emp-avatar { width: 32px; height: 32px; border-radius: 50%; background: var(--surface3); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.8rem; flex-shrink: 0; }
.emp-name { font-weight: 600; font-size: 0.88rem; }
.emp-sub { font-size: 0.78rem; color: var(--text-muted); }

/* ─── SALARY BREAKDOWN ───────────────────────────────── */
.salary-breakdown { background: var(--surface2); border-radius: var(--radius); padding: 16px; }
.salary-row { display: flex; justify-content: space-between; align-items: center; padding: 7px 0; border-bottom: 1px solid var(--border); font-size: 0.87rem; }
.salary-row:last-child { border-bottom: none; }
.salary-row.total { font-weight: 700; padding-top: 10px; margin-top: 4px; }
.salary-row.net { font-weight: 800; font-size: 1rem; color: var(--green); margin-top: 8px; padding-top: 12px; border-top: 2px solid var(--border); }
.salary-positive { color: var(--green); }
.salary-negative { color: var(--accent); }

/* ─── PAYSLIP VIEWER ─────────────────────────────────── */
.payslip-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 24px; transition: var(--transition); cursor: pointer;
}
.payslip-card:hover { border-color: var(--border-hover); transform: translateY(-2px); box-shadow: var(--shadow); }
.payslip-month { font-family: var(--font-display); font-size: 1.1rem; font-weight: 800; }
.payslip-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 14px; }

/* ─── LOADING ────────────────────────────────────────── */
.spinner { display: inline-block; width: 18px; height: 18px; border: 2px solid rgba(255,255,255,0.2); border-top-color: #fff; border-radius: 50%; animation: spin 0.7s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.page-loading { display: flex; align-items: center; justify-content: center; min-height: 300px; }

/* ─── FILTER ROW ─────────────────────────────────────── */
.filter-row { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }
.filter-row select { padding: 8px 12px; background: var(--surface2); border: 1px solid var(--border); color: var(--text); border-radius: var(--radius-sm); font-size: 0.85rem; min-width: 160px; }

/* ─── DASHBOARD CHARTS ───────────────────────────────── */
.dashboard-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 20px; }
.dash-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; }
.dash-card-title { font-weight: 700; font-size: 0.95rem; margin-bottom: 16px; }

/* ─── PAYROLL PROCESS ────────────────────────────────── */
.payroll-entry-row td { padding: 8px 12px; }
.lop-input { width: 70px; padding: 5px 8px; background: var(--surface2); border: 1px solid var(--border); color: var(--text); border-radius: var(--radius-sm); text-align: center; font-size: 0.85rem; }
.lop-input:focus { border-color: var(--accent); outline: none; }
.net-salary-cell { font-weight: 700; color: var(--green); }
.gross-cell { color: var(--blue); font-weight: 600; }

/* ─── COMPANY CARD ───────────────────────────────────── */
.company-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 16px; }
.company-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 20px; transition: var(--transition); display: flex; flex-direction: column; gap: 14px;
}
.company-card:hover { border-color: var(--border-hover); transform: translateY(-2px); box-shadow: var(--shadow); }
.company-logo-placeholder { width: 48px; height: 48px; border-radius: var(--radius-sm); background: var(--surface3); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 800; font-size: 1.2rem; color: var(--accent); flex-shrink: 0; }
.company-name { font-weight: 700; font-size: 1rem; }
.company-meta { font-size: 0.8rem; color: var(--text-muted); }

/* ─── PROFILE ────────────────────────────────────────── */
.profile-header { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; display: flex; gap: 20px; align-items: center; margin-bottom: 20px; }
.profile-avatar { width: 64px; height: 64px; border-radius: 50%; background: var(--accent); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; font-weight: 800; flex-shrink: 0; }
.profile-name { font-family: var(--font-display); font-size: 1.4rem; font-weight: 800; }
.profile-role { color: var(--text-muted); font-size: 0.85rem; }
.info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.info-item { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 14px 16px; }
.info-label { font-size: 0.73rem; color: var(--text-muted); font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 4px; }
.info-value { font-size: 0.9rem; font-weight: 600; }

/* ─── RESPONSIVE ─────────────────────────────────────── */
@media (max-width: 900px) {
  .sidebar { transform: translateX(-100%); }
  .sidebar.open { transform: translateX(0); }
  .main-content { margin-left: 0 !important; padding: 20px 16px; }
  .form-grid { grid-template-columns: 1fr; }
  .dashboard-grid { grid-template-columns: 1fr; }
  .info-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .company-grid { grid-template-columns: 1fr; }
  .page-header { flex-direction: column; align-items: flex-start; }
}

/* ─── UTILITIES ──────────────────────────────────────── */
.flex { display: flex; } .items-center { align-items: center; } .gap-2 { gap: 8px; } .gap-3 { gap: 12px; }
.mt-1 { margin-top: 4px; } .mt-2 { margin-top: 8px; } .mt-3 { margin-top: 12px; } .mt-4 { margin-top: 16px; }
.text-muted { color: var(--text-muted); } .text-sm { font-size: 0.82rem; } .text-xs { font-size: 0.74rem; }
.font-bold { font-weight: 700; } .font-mono { font-family: var(--font-mono); }
.truncate { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.actions-cell { display: flex; gap: 6px; align-items: center; }
