@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;500;600;700;800&display=swap');

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

:root {
  --primary: #1a3a5c;
  --primary-light: #2a5080;
  --primary-dark: #0f2540;
  --accent: #e8a020;
  --accent-light: #f5c040;
  --accent-dark: #c88010;
  --bg: #f0f4f8;
  --surface: #ffffff;
  --surface-2: #f8fafc;
  --border: rgba(0,0,0,0.07);
  --border-strong: rgba(0,0,0,0.13);
  --text: #1a1a2e;
  --text-secondary: #4a5568;
  --muted: #718096;
  --success-bg: #e8f5e9; --success: #2e7d32;
  --warning-bg: #fff8e1; --warning: #e65100;
  --danger-bg: #ffebee;  --danger: #c62828;
  --info-bg: #e3f2fd;    --info: #1565c0;
  --sidebar-w: 250px;
  --header-h: 64px;
  --radius: 12px;
  --radius-sm: 8px;
  --radius-xs: 6px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-md: 0 8px 24px rgba(0,0,0,0.12);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.18);
  --transition: all 0.2s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Cairo', sans-serif;
  direction: rtl;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

/* ===========================
   AUTH PAGE
=========================== */
.auth-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  position: relative;
  overflow: hidden;
  background: var(--primary-dark);
}

.auth-page::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(232,160,32,0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(42,80,128,0.4) 0%, transparent 50%),
    linear-gradient(135deg, #0f2540 0%, #1a3a5c 50%, #142d4c 100%);
}

.auth-page::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 32px 32px;
}

.auth-card {
  background: var(--surface);
  border-radius: 20px;
  padding: 44px 40px;
  width: 100%;
  max-width: 440px;
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 1;
  animation: slideUp 0.4s ease;
}

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

.auth-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 36px;
  justify-content: center;
}

.auth-logo-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px rgba(26,58,92,0.3);
}

.auth-logo-icon svg { width: 32px; height: 32px; }
.auth-title { font-size: 20px; font-weight: 800; color: var(--primary); letter-spacing: -0.3px; }
.auth-sub { font-size: 12px; color: var(--muted); margin-top: 2px; }

.auth-form h2 { font-size: 24px; font-weight: 700; margin-bottom: 6px; color: var(--text); }
.auth-form > p { font-size: 14px; color: var(--muted); margin-bottom: 28px; }

/* ===========================
   FORM ELEMENTS
=========================== */
.form-group { margin-bottom: 18px; }

.form-group label {
  display: block;
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 7px;
  font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border-strong);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-family: 'Cairo', sans-serif;
  color: var(--text);
  background: var(--surface-2);
  transition: var(--transition);
  outline: none;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(26,58,92,0.1);
  background: #fff;
}

.form-group input:hover,
.form-group select:hover {
  border-color: var(--primary-light);
}

.form-group textarea { resize: vertical; min-height: 90px; }

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: left 14px center;
  padding-left: 36px;
}

/* ===========================
   BUTTONS
=========================== */
.btn {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-size: 14px; font-weight: 600;
  font-family: 'Cairo', sans-serif;
  cursor: pointer; border: none;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
  user-select: none;
}

.btn:active { transform: scale(0.97); }

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff;
  box-shadow: 0 2px 8px rgba(26,58,92,0.25);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  box-shadow: 0 4px 12px rgba(26,58,92,0.35);
  transform: translateY(-1px);
}

.btn-accent {
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: #fff;
  box-shadow: 0 2px 8px rgba(232,160,32,0.3);
}
.btn-accent:hover { transform: translateY(-1px); box-shadow: 0 4px 12px rgba(232,160,32,0.4); }

.btn-outline {
  background: transparent;
  border: 1.5px solid var(--border-strong);
  color: var(--text-secondary);
}
.btn-outline:hover { background: var(--bg); border-color: var(--primary); color: var(--primary); }

.btn-danger { background: var(--danger-bg); color: var(--danger); }
.btn-danger:hover { background: #ffcdd2; }

.btn-sm { padding: 6px 14px; font-size: 12px; }
.btn-xs { padding: 4px 10px; font-size: 11px; }
.btn-block { width: 100%; justify-content: center; padding: 14px; font-size: 15px; }
.btn:disabled { opacity: 0.55; cursor: not-allowed; transform: none !important; }

/* ===========================
   LAYOUT
=========================== */
.app-layout { display: flex; min-height: 100vh; }

/* SIDEBAR */
.sidebar {
  width: var(--sidebar-w);
  background: linear-gradient(180deg, var(--primary-dark) 0%, var(--primary) 100%);
  position: fixed; top: 0; right: 0;
  height: 100vh; overflow-y: auto;
  z-index: 200;
  display: flex; flex-direction: column;
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,0.1) transparent;
}

.sidebar::-webkit-scrollbar { width: 4px; }
.sidebar::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.15); border-radius: 4px; }

.sidebar-header {
  padding: 20px 16px 18px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; gap: 12px;
}

.sidebar-logo {
  width: 40px; height: 40px;
  background: var(--accent);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(232,160,32,0.4);
}
.sidebar-logo svg { width: 24px; height: 24px; }
.sidebar-brand { font-size: 13px; font-weight: 700; color: #fff; line-height: 1.3; }
.sidebar-brand span { display: block; font-size: 10.5px; font-weight: 400; opacity: 0.6; margin-top: 1px; }

.sidebar-nav { flex: 1; padding: 14px 10px; }

.nav-section-label {
  font-size: 10px; font-weight: 700;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase; letter-spacing: 0.8px;
  padding: 14px 10px 6px;
}

.nav-item {
  display: flex; align-items: center; gap: 11px;
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 13.5px; font-weight: 500;
  color: rgba(255,255,255,0.7);
  cursor: pointer; transition: var(--transition);
  margin-bottom: 3px;
  text-decoration: none;
  position: relative;
}

.nav-item:hover {
  background: rgba(255,255,255,0.1);
  color: #fff;
  transform: translateX(-3px);
}

.nav-item.active {
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  box-shadow: 0 2px 10px rgba(232,160,32,0.4);
}

.nav-item.active:hover { transform: none; }
.nav-item svg { width: 18px; height: 18px; flex-shrink: 0; }

.sidebar-footer {
  padding: 16px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.user-info {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 12px;
  padding: 10px 12px;
  background: rgba(255,255,255,0.06);
  border-radius: 10px;
}

.user-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; color: #fff;
  flex-shrink: 0;
  border: 2px solid rgba(255,255,255,0.15);
}

.user-name { font-size: 13px; font-weight: 600; color: #fff; }
.user-role-badge {
  font-size: 10.5px; padding: 2px 8px; border-radius: 10px;
  background: rgba(255,255,255,0.12); color: rgba(255,255,255,0.8);
  display: inline-block; margin-top: 2px;
}

/* MAIN CONTENT */
.main-content {
  margin-right: var(--sidebar-w);
  flex: 1; min-height: 100vh;
  display: flex; flex-direction: column;
  min-width: 0;
}

.top-header {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 0 28px;
  height: var(--header-h);
  display: flex; align-items: center; justify-content: space-between;
  position: sticky; top: 0; z-index: 100;
  box-shadow: var(--shadow-sm);
}

.page-title { font-size: 18px; font-weight: 800; color: var(--text); letter-spacing: -0.3px; }
.page-subtitle { font-size: 12px; color: var(--muted); margin-top: 1px; }
.header-actions { display: flex; gap: 10px; align-items: center; }

.content-area { padding: 24px; flex: 1; }

/* ===========================
   CARDS
=========================== */
.card {
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  padding: 22px;
  transition: var(--transition);
}

.card-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 18px; padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
  gap: 12px;
  flex-wrap: wrap;
}

.card-title { font-size: 15px; font-weight: 700; color: var(--text); }

/* ===========================
   STATS
=========================== */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 16px; margin-bottom: 24px;
}

.stat-card {
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 20px 18px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
  opacity: 0;
  transition: var(--transition);
}

.stat-card:hover { 
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.stat-card:hover::before { opacity: 1; }

.stat-icon {
  width: 44px; height: 44px; border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.stat-icon svg { width: 22px; height: 22px; }

.stat-value { font-size: 28px; font-weight: 800; color: var(--text); line-height: 1; letter-spacing: -0.5px; }
.stat-label { font-size: 12px; color: var(--muted); margin-top: 5px; font-weight: 500; }
.stat-change { font-size: 11px; margin-top: 8px; font-weight: 600; }
.stat-up { color: var(--success); }
.stat-down { color: var(--danger); }

/* ===========================
   TABLES (RESPONSIVE)
=========================== */
.table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface);
  -webkit-overflow-scrolling: touch;
}

table { width: 100%; border-collapse: collapse; font-size: 13px; }

thead th {
  background: var(--surface-2);
  color: var(--muted);
  font-weight: 700;
  padding: 12px 16px;
  text-align: right;
  font-size: 11.5px;
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

tbody td {
  padding: 13px 16px;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  vertical-align: middle;
}

tbody tr:last-child td { border-bottom: none; }
tbody tr { transition: background 0.15s; }
tbody tr:hover { background: #fafbfc; }

/* Mobile table → card layout */
@media (max-width: 640px) {
  .table-mobile-cards table,
  .table-mobile-cards thead,
  .table-mobile-cards tbody,
  .table-mobile-cards th,
  .table-mobile-cards td,
  .table-mobile-cards tr { display: block; }

  .table-mobile-cards thead tr {
    position: absolute; top: -9999px; left: -9999px;
  }

  .table-mobile-cards tbody tr {
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    margin-bottom: 10px;
    padding: 12px;
    background: var(--surface);
    box-shadow: var(--shadow-sm);
  }

  .table-mobile-cards tbody tr:last-child { border: 1px solid var(--border); }
  .table-mobile-cards tbody tr:hover { background: var(--surface); }

  .table-mobile-cards tbody td {
    border: none; padding: 4px 0;
    display: flex; justify-content: space-between; align-items: center;
    font-size: 13px;
  }

  .table-mobile-cards tbody td::before {
    content: attr(data-label);
    font-weight: 600; color: var(--muted);
    font-size: 11px;
    min-width: 110px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
  }
}

/* ===========================
   BADGES
=========================== */
.badge {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 11px; padding: 4px 10px;
  border-radius: 20px; font-weight: 700;
  white-space: nowrap;
}
.badge-success { background: var(--success-bg); color: var(--success); }
.badge-warning { background: var(--warning-bg); color: var(--warning); }
.badge-danger { background: var(--danger-bg); color: var(--danger); }
.badge-info { background: var(--info-bg); color: var(--info); }
.badge-purple { background: #ede9fe; color: #5b21b6; }
.badge-gray { background: #f3f4f6; color: #374151; }

/* ===========================
   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;
  padding-top: 18px; margin-top: 4px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}

/* ===========================
   MODAL
=========================== */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(3px);
  z-index: 500;
  display: flex; align-items: center; justify-content: center;
  padding: 16px;
  animation: fadeIn 0.2s ease;
}

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.modal {
  background: var(--surface);
  border-radius: var(--radius);
  width: 100%; max-width: 580px;
  max-height: 92vh; overflow-y: auto;
  box-shadow: var(--shadow-lg);
  animation: modalIn 0.25s cubic-bezier(0.34,1.56,0.64,1);
}

@keyframes modalIn {
  from { opacity: 0; transform: scale(0.9) translateY(10px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

.modal-header {
  padding: 22px 24px 18px;
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  position: sticky; top: 0; background: var(--surface); z-index: 1;
}
.modal-title { font-size: 16px; font-weight: 700; }
.modal-close {
  background: var(--surface-2); border: 1px solid var(--border);
  border-radius: 8px; cursor: pointer;
  color: var(--muted); font-size: 18px; line-height: 1;
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.modal-close:hover { background: var(--danger-bg); color: var(--danger); }
.modal-body { padding: 22px 24px; }
.modal-footer {
  padding: 16px 24px;
  border-top: 1px solid var(--border);
  display: flex; gap: 10px; justify-content: flex-end;
  background: var(--surface-2);
  border-radius: 0 0 var(--radius) var(--radius);
}

/* ===========================
   EMPTY STATE
=========================== */
.empty-state {
  text-align: center; padding: 56px 20px; color: var(--muted);
}
.empty-state svg { width: 52px; height: 52px; opacity: 0.25; margin-bottom: 14px; display: block; margin-inline: auto; }
.empty-state p { font-size: 14px; font-weight: 500; }

/* ===========================
   TOAST NOTIFICATIONS
=========================== */
.toast-container {
  position: fixed; bottom: 24px; left: 24px;
  z-index: 9999; display: flex; flex-direction: column; gap: 10px;
}

.toast {
  display: flex; align-items: center; gap: 10px;
  padding: 13px 18px;
  border-radius: var(--radius-sm);
  background: var(--text);
  color: #fff;
  font-size: 13px; font-weight: 500;
  box-shadow: var(--shadow-md);
  animation: toastIn 0.3s ease;
  min-width: 240px;
  max-width: 340px;
}

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

.toast.success { background: var(--success); }
.toast.error   { background: var(--danger); }
.toast.warning { background: var(--warning); }

/* ===========================
   HAMBURGER & OVERLAY
=========================== */
.hamburger {
  display: none;
  background: none; border: none; cursor: pointer;
  padding: 8px; border-radius: 8px;
  transition: var(--transition);
  flex-direction: column; gap: 5px;
}
.hamburger:hover { background: var(--bg); }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: var(--transition); }

.sidebar-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(2px);
  z-index: 150; display: none;
}
.sidebar-overlay.show { display: block; }

/* ===========================
   UTILITY & GRID
=========================== */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.grid-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 18px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }

.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mt-16 { margin-top: 16px; }

.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-center  { display: flex; align-items: center; gap: 10px; }
.flex-end     { display: flex; align-items: center; justify-content: flex-end; gap: 10px; }

.text-muted  { color: var(--muted); font-size: 13px; }
.text-small  { font-size: 12px; }
.font-bold   { font-weight: 700; }

/* ===========================
   SEARCH / FILTER BAR
=========================== */
.filter-bar {
  display: flex; align-items: center; gap: 10px;
  flex-wrap: wrap;
}

.search-input {
  padding: 9px 14px 9px 36px;
  border: 1.5px solid var(--border-strong);
  border-radius: var(--radius-sm);
  font-size: 13px; font-family: 'Cairo', sans-serif;
  background: var(--surface-2);
  outline: none; transition: var(--transition);
  color: var(--text);
}
.search-input:focus { border-color: var(--primary); background: #fff; box-shadow: 0 0 0 3px rgba(26,58,92,0.08); }

.search-wrapper { position: relative; }
.search-wrapper svg {
  position: absolute; right: 11px; top: 50%; transform: translateY(-50%);
  color: var(--muted); pointer-events: none;
  width: 15px; height: 15px;
}

/* ===========================
   LOADING
=========================== */
.loading-spinner {
  display: flex; align-items: center; justify-content: center;
  padding: 48px; color: var(--muted); gap: 12px; font-size: 14px;
}

.spinner {
  width: 22px; height: 22px;
  border: 2.5px solid var(--border);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  flex-shrink: 0;
}

@keyframes spin { to { transform: rotate(360deg); } }

/* ===========================
   DIVIDER
=========================== */
.divider {
  height: 1px; background: var(--border);
  margin: 16px 0;
}

/* ===========================
   INFO ROW (key: value)
=========================== */
.info-row {
  display: flex; gap: 8px;
  padding: 8px 0;
  border-bottom: 1px dashed var(--border);
  font-size: 13px;
}
.info-row:last-child { border-bottom: none; }
.info-label { color: var(--muted); font-weight: 500; min-width: 120px; }
.info-value { color: var(--text); font-weight: 600; }

/* ===========================
   RESPONSIVE — TABLET (≤900px)
=========================== */
@media (max-width: 900px) {
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ===========================
   RESPONSIVE — MOBILE (≤768px)
=========================== */
@media (max-width: 768px) {
  :root { --sidebar-w: 280px; }

  .sidebar {
    transform: translateX(100%);
  }
  .sidebar.open { transform: translateX(0); }

  .main-content { margin-right: 0; }
  .hamburger { display: flex; }

  .top-header { padding: 0 16px; }
  .content-area { padding: 16px; }

  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }

  .form-grid { grid-template-columns: 1fr; }
  .form-grid .full { grid-column: 1; }

  .modal { max-width: 100%; border-radius: var(--radius) var(--radius) 0 0; }
  .modal-overlay { align-items: flex-end; padding: 0; }

  .card-header { flex-direction: column; align-items: flex-start; }

  .filter-bar { width: 100%; }
  .filter-bar .search-input { width: 100%; }

  .stats-grid { grid-template-columns: 1fr 1fr; gap: 12px; }

  .page-title { font-size: 16px; }

  .form-actions { justify-content: stretch; }
  .form-actions .btn { flex: 1; justify-content: center; }

  .toast-container { left: 12px; right: 12px; bottom: 16px; }
  .toast { min-width: unset; max-width: 100%; }
}

/* ===========================
   RESPONSIVE — SMALL MOBILE (≤480px)
=========================== */
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }

  .auth-card { padding: 28px 22px; }
  .auth-logo-icon { width: 48px; height: 48px; }
  .auth-title { font-size: 17px; }

  .stat-value { font-size: 24px; }
  .content-area { padding: 12px; }

  table { font-size: 12px; }
  thead th, tbody td { padding: 10px 12px; }

  .btn-block { font-size: 14px; padding: 12px; }
}

/* ===========================
   PRINT
=========================== */
@media print {
  .sidebar, .top-header, .hamburger, .sidebar-overlay,
  .btn, .modal-overlay, .toast-container { display: none !important; }
  .main-content { margin: 0 !important; }
  .content-area { padding: 0 !important; }
  .card { box-shadow: none !important; border: 1px solid #ddd !important; }
}
