/* ═══════════════════════════════════════════════════
   FNet — Professional Corporate CRM
   ═══════════════════════════════════════════════════ */

:root {
  /* Brand */
  --brand-primary:       #2d52d4;
  --brand-primary-dark:  #1e3fb8;
  --brand-primary-light: #dde6ff;
  --brand-primary-faint: #f0f3ff;
  --brand-secondary:     #e07b00;
  --brand-secondary-dark:#c46d00;

  /* Sidebar */
  --sidebar-bg:    #0d1b2e;
  --sidebar-sep:   rgba(255,255,255,0.06);
  --sidebar-text:  #7a9ab8;
  --sidebar-hover: rgba(255,255,255,0.05);
  --sidebar-active:rgba(45,82,212,0.20);
  --sidebar-width: 240px;

  /* Shell */
  --topbar-height: 56px;

  /* Surfaces */
  --surface:   #ffffff;
  --surface-2: #f5f8fc;
  --surface-3: #eaeff7;
  --border:    #e2e8f0;

  /* Text */
  --text-primary:   #0e1e35;
  --text-secondary: #475569;
  --text-muted:     #8fa3bc;

  /* Shadows */
  --shadow-xs: 0 1px 2px rgba(14,30,53,0.06);
  --shadow-sm: 0 2px 8px rgba(14,30,53,0.08), 0 1px 2px rgba(14,30,53,0.04);
  --shadow-md: 0 4px 16px rgba(14,30,53,0.10), 0 2px 4px rgba(14,30,53,0.05);

  /* Radii */
  --r-sm: 6px;
  --r:    10px;
  --r-lg: 14px;

  /* Status badge palette */
  --bdg-unassigned-bg:   #edf1f7;
  --bdg-unassigned-text: #3f5070;
  --bdg-live-bg:         #dde6ff;
  --bdg-live-text:       #1e3fb8;
  --bdg-won-bg:          #d1fae5;
  --bdg-won-text:        #065f46;
  --bdg-lost-bg:         #fee2e2;
  --bdg-lost-text:       #991b1b;
  --bdg-review-bg:       #fef3c7;
  --bdg-review-text:     #92400e;
}

/* ── Bootstrap variable overrides ─────────────────── */
:root {
  --bs-primary:          #2d52d4;
  --bs-primary-rgb:      45, 82, 212;
  --bs-link-color:       #2d52d4;
  --bs-link-hover-color: #1e3fb8;
  --bs-focus-ring-color: rgba(45,82,212,0.2);
  --bs-border-color:     #e2e8f0;
  --bs-body-font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --bs-body-color:       #0e1e35;
  --bs-body-bg:          #f5f8fc;
}

/* ── Base ─────────────────────────────────────────── */
body {
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  background: var(--surface-2);
  color: var(--text-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

/* ── Sidebar ──────────────────────────────────────── */
.sidebar {
  width: var(--sidebar-width);
  background: var(--sidebar-bg);
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  position: fixed;
  inset: 0 auto 0 0;
  height: 100vh;
  z-index: 1000;
  transition: transform 0.25s cubic-bezier(0.4,0,0.2,1);
  border-right: 1px solid rgba(255,255,255,0.04);
}

.sidebar-brand {
  padding: 1.125rem 1.375rem 1.0625rem;
  border-bottom: 1px solid var(--sidebar-sep);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.sidebar-brand-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.sidebar-brand-name {
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.3px;
  line-height: 1.2;
}

.sidebar-brand-sub {
  font-size: 0.62rem;
  color: var(--sidebar-text);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  display: block;
  line-height: 1.4;
}

.sidebar-nav {
  flex: 1;
  padding: 0.75rem 0;
  overflow-y: auto;
}

.nav-section-label {
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  color: rgba(122,154,184,0.4);
  padding: 0.875rem 1.375rem 0.3rem;
  display: block;
  font-weight: 600;
}

.sidebar-link {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.475rem 1.375rem;
  color: var(--sidebar-text);
  text-decoration: none;
  font-size: 0.845rem;
  font-weight: 500;
  border-left: 2px solid transparent;
  transition: background 0.12s, color 0.12s, border-color 0.12s;
}

.sidebar-link:hover {
  background: var(--sidebar-hover);
  color: #c8d8ed;
  border-left-color: rgba(45,82,212,0.3);
}

.sidebar-link.active {
  background: var(--sidebar-active);
  color: #a8c0ff;
  border-left-color: var(--brand-primary);
}

.sidebar-link .icon {
  width: 15px; height: 15px;
  flex-shrink: 0;
  opacity: 0.75;
}
.sidebar-link.active .icon { opacity: 1; }

.sidebar-footer {
  padding: 0.875rem 1.375rem;
  border-top: 1px solid var(--sidebar-sep);
}

.sidebar-user {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  text-decoration: none;
  color: var(--sidebar-text);
  transition: color 0.12s;
}
.sidebar-user:hover { color: #fff; }

.sidebar-user img {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.12);
}

.sidebar-user-name {
  font-size: 0.77rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}

.sidebar-user-role {
  font-size: 0.65rem;
  color: var(--sidebar-text);
  text-transform: capitalize;
}

/* ── Main wrapper ─────────────────────────────────── */
.main-wrapper {
  margin-left: var(--sidebar-width);
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.topbar {
  height: var(--topbar-height);
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  padding: 0 1.5rem;
  gap: 0.875rem;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-xs);
}

.topbar-toggle {
  display: none;
  background: none;
  border: none;
  padding: 0.25rem 0.375rem;
  color: var(--text-muted);
  cursor: pointer;
  border-radius: var(--r-sm);
  transition: color 0.12s, background 0.12s;
}
.topbar-toggle:hover { color: var(--text-primary); background: var(--surface-3); }

.topbar-title {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  flex: 1;
  letter-spacing: 0.1px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.content-area {
  padding: 1.625rem 1.75rem;
  flex: 1;
}

/* ── Page headers ─────────────────────────────────── */
.page-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 0;
  letter-spacing: -0.4px;
}

.page-subtitle {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ── Stat cards ───────────────────────────────────── */
.stat-card {
  background: var(--surface);
  border-radius: var(--r-lg);
  padding: 1.25rem 1.375rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-xs);
  transition: box-shadow 0.2s, border-color 0.2s, transform 0.15s;
  color: inherit;
  text-decoration: none;
  display: block;
}
.stat-card:hover {
  box-shadow: var(--shadow-md);
  border-color: #cdd6e8;
  transform: translateY(-1px);
  color: inherit;
}

.stat-card-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--text-muted);
  margin-bottom: 0.625rem;
}

.stat-card-value {
  font-size: 2.125rem;
  font-weight: 800;
  line-height: 1;
  color: var(--text-primary);
  letter-spacing: -1.5px;
}

.stat-card-icon {
  width: 36px; height: 36px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stat-primary .stat-card-icon { background: var(--brand-primary-faint); color: var(--brand-primary); }
.stat-success .stat-card-icon { background: #ecfdf5; color: #059669; }
.stat-warning .stat-card-icon { background: #fffbeb; color: #d97706; }
.stat-danger  .stat-card-icon { background: #fef2f2; color: #dc2626; }
.stat-info    .stat-card-icon { background: #eff6ff; color: var(--brand-primary); }

/* ── Status badges ────────────────────────────────── */
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.17rem 0.55rem;
  border-radius: 20px;
  font-size: 0.67rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.45px;
  white-space: nowrap;
}

.badge-unassigned { background: var(--bdg-unassigned-bg); color: var(--bdg-unassigned-text); }
.badge-live       { background: var(--bdg-live-bg);       color: var(--bdg-live-text); }
.badge-won        { background: var(--bdg-won-bg);        color: var(--bdg-won-text); }
.badge-lost       { background: var(--bdg-lost-bg);       color: var(--bdg-lost-text); }
.badge-review     { background: var(--bdg-review-bg);     color: var(--bdg-review-text); }

/* ── Cards ────────────────────────────────────────── */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-xs);
}

.card-header {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 0.8rem 1.25rem;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.7px;
  border-radius: var(--r-lg) var(--r-lg) 0 0 !important;
}

.card-body { padding: 1.25rem; }

.card-footer {
  background: var(--surface-2);
  border-top: 1px solid var(--border);
  padding: 0.75rem 1.25rem;
  border-radius: 0 0 var(--r-lg) var(--r-lg) !important;
}

/* ── Tables ───────────────────────────────────────── */
.table {
  font-size: 0.855rem;
  color: var(--text-primary);
  margin-bottom: 0;
}

.table th {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  color: var(--text-muted);
  font-weight: 700;
  border-bottom: 1px solid var(--border) !important;
  background: var(--surface-2);
  padding: 0.6rem 1rem;
  white-space: nowrap;
}

.table td {
  padding: 0.7rem 1rem;
  vertical-align: middle;
  border-bottom: 1px solid #f1f4f9;
}

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

/* ── Sortable column headers ──────────────────────── */
.th-sort a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: inherit;
  text-decoration: none;
  transition: color 0.12s;
}
.th-sort a:hover { color: var(--text-primary); }
.th-sort.is-sorted a { color: var(--brand-primary); }
.sort-arrow { opacity: 0.35; font-size: 0.75em; line-height: 1; }
.th-sort.is-sorted .sort-arrow { opacity: 1; }

/* Stale row */
.enq-row-stale td { background: #fffbeb !important; }
.enq-row-stale:hover td { background: #fef3c7 !important; }

/* ── Filter tabs ──────────────────────────────────── */
.filter-tabs {
  display: flex;
  gap: 0.375rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.filter-tab {
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 600;
  border: 1.5px solid var(--border);
  background: var(--surface);
  color: var(--text-muted);
  text-decoration: none;
  transition: all 0.12s;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.filter-tab:hover {
  border-color: var(--brand-primary-light);
  color: var(--brand-primary);
  background: var(--brand-primary-faint);
}
.filter-tab.active {
  background: var(--brand-primary);
  border-color: var(--brand-primary);
  color: #fff;
  box-shadow: 0 2px 8px rgba(45,82,212,0.22);
}
.filter-tab .count {
  background: rgba(255,255,255,0.25);
  border-radius: 10px;
  padding: 0 0.35rem;
  font-size: 0.67rem;
  font-weight: 700;
}
.filter-tab:not(.active) .count {
  background: var(--surface-3);
  color: var(--text-secondary);
}

/* ── Pagination bar ───────────────────────────────── */
.pagination-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.125rem;
  border-top: 1px solid var(--border);
  background: var(--surface-2);
  border-radius: 0 0 var(--r-lg) var(--r-lg);
  flex-wrap: wrap;
  gap: 0.625rem;
}

.pagination-info {
  font-size: 0.775rem;
  color: var(--text-muted);
}

.pagination-controls {
  display: flex;
  align-items: center;
  gap: 0.2rem;
}

.page-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 30px;
  height: 30px;
  padding: 0 0.45rem;
  border-radius: var(--r-sm);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-secondary);
  background: var(--surface);
  border: 1px solid var(--border);
  text-decoration: none;
  transition: all 0.12s;
  cursor: pointer;
  line-height: 1;
}
.page-btn:hover {
  background: var(--brand-primary-faint);
  border-color: var(--brand-primary-light);
  color: var(--brand-primary);
}
.page-btn.active {
  background: var(--brand-primary);
  border-color: var(--brand-primary);
  color: #fff;
  box-shadow: 0 2px 6px rgba(45,82,212,0.28);
}
.page-btn.disabled {
  opacity: 0.3;
  pointer-events: none;
  cursor: default;
}
.page-ellipsis {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px; height: 30px;
  color: var(--text-muted);
  font-size: 0.78rem;
}

.per-page-select {
  font-size: 0.775rem;
  font-family: inherit;
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 0.2rem 0.625rem;
  background: var(--surface);
  color: var(--text-secondary);
  height: 30px;
  cursor: pointer;
  transition: border-color 0.12s, box-shadow 0.12s;
}
.per-page-select:focus {
  border-color: var(--brand-primary);
  outline: none;
  box-shadow: 0 0 0 3px rgba(45,82,212,0.1);
}

/* ── Timeline ─────────────────────────────────────── */
.timeline { position: relative; padding-left: 1.5rem; }
.timeline::before {
  content: '';
  position: absolute;
  left: 0.5rem; top: 4px; bottom: 0;
  width: 1.5px;
  background: var(--border);
}
.timeline-item { position: relative; padding-bottom: 1.125rem; }
.timeline-dot {
  position: absolute;
  left: -1.3rem; top: 0.3rem;
  width: 9px; height: 9px;
  border-radius: 50%;
  border: 2px solid var(--surface);
  box-shadow: 0 0 0 1.5px #c0cbdd;
  background: var(--brand-primary);
}
.timeline-dot.won     { background: #10b981; box-shadow: 0 0 0 1.5px #a7f3d0; }
.timeline-dot.lost    { background: #ef4444; box-shadow: 0 0 0 1.5px #fca5a5; }
.timeline-dot.created { background: var(--text-muted); }
.timeline-time  { font-size: 0.7rem; color: var(--text-muted); margin-bottom: 0.1rem; }
.timeline-label { font-size: 0.82rem; font-weight: 600; color: var(--text-secondary); }
.timeline-note  { font-size: 0.77rem; color: var(--text-muted); margin-top: 0.1rem; }

/* ── Notes ────────────────────────────────────────── */
.note-item {
  background: var(--surface-2);
  border-radius: var(--r);
  padding: 0.75rem 1rem;
  margin-bottom: 0.5rem;
  border-left: 3px solid var(--brand-primary-light);
}
.note-meta  { font-size: 0.72rem; color: var(--text-muted); margin-bottom: 0.2rem; }
.note-body  { font-size: 0.855rem; white-space: pre-wrap; line-height: 1.55; }

/* ── Stale indicator ──────────────────────────────── */
.stale-indicator {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  color: #d97706;
  font-size: 0.72rem;
  font-weight: 700;
}

/* ── Buttons ──────────────────────────────────────── */
.btn {
  font-weight: 600;
  letter-spacing: 0.1px;
  border-radius: var(--r-sm);
  transition: all 0.12s;
}

.btn-primary {
  background: var(--brand-primary);
  border-color: var(--brand-primary);
  color: #fff;
  box-shadow: 0 1px 4px rgba(45,82,212,0.22);
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--brand-primary-dark);
  border-color: var(--brand-primary-dark);
  color: #fff;
  box-shadow: 0 3px 10px rgba(45,82,212,0.32);
}

.btn-success { background: #059669; border-color: #059669; color: #fff; }
.btn-success:hover { background: #047857; border-color: #047857; color: #fff; }

.btn-danger { background: #dc2626; border-color: #dc2626; color: #fff; }
.btn-danger:hover { background: #b91c1c; border-color: #b91c1c; color: #fff; }

.btn-outline-primary {
  color: var(--brand-primary);
  border-color: var(--brand-primary-light);
  background: transparent;
}
.btn-outline-primary:hover {
  background: var(--brand-primary);
  border-color: var(--brand-primary);
  color: #fff;
}

.btn-outline-secondary {
  color: var(--text-secondary);
  border-color: var(--border);
  background: transparent;
}
.btn-outline-secondary:hover {
  background: var(--surface-3);
  border-color: #c4cedc;
  color: var(--text-primary);
}

.btn-sm { font-size: 0.775rem; padding: 0.33rem 0.75rem; }

/* ── Forms ────────────────────────────────────────── */
.form-control, .form-select {
  border-color: var(--border);
  border-radius: var(--r-sm);
  color: var(--text-primary);
  font-family: inherit;
  font-size: 0.875rem;
}
.form-control:focus, .form-select:focus {
  border-color: var(--brand-primary);
  box-shadow: 0 0 0 3px rgba(45,82,212,0.1);
}
.form-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.3rem;
}
.form-control-sm, .form-select-sm { font-size: 0.8rem; }

/* ── Dropdowns ────────────────────────────────────── */
.dropdown-menu {
  border: 1px solid var(--border);
  border-radius: var(--r);
  box-shadow: var(--shadow-md);
  font-size: 0.855rem;
}
.dropdown-item { color: var(--text-secondary); }
.dropdown-item:hover { background: var(--surface-2); color: var(--text-primary); }
.sidebar-footer .dropdown-item { color: rgba(255,255,255,0.85); }
.sidebar-footer .dropdown-item:hover { background: rgba(255,255,255,0.08); color: #fff; }

/* ── Alerts ───────────────────────────────────────── */
.alert {
  border-radius: var(--r);
  font-size: 0.855rem;
  border: none;
}
.alert-success { background: #ecfdf5; color: #065f46; border-left: 3px solid #10b981; }
.alert-danger  { background: #fef2f2; color: #991b1b; border-left: 3px solid #ef4444; }
.alert-warning { background: #fffbeb; color: #92400e; border-left: 3px solid #f59e0b; }
.alert-info    { background: #eff6ff; color: #1e40af; border-left: 3px solid #3b82f6; }

/* ── Misc helpers ─────────────────────────────────── */
.card-white {
  background: var(--surface);
  border-radius: var(--r-lg);
  padding: 1.375rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-xs);
}

.section-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 1.25rem 0;
}

.original-email {
  background: var(--surface-2);
  border-radius: var(--r);
  padding: 1rem;
  font-size: 0.8rem;
  font-family: 'JetBrains Mono', 'Fira Code', 'Courier New', monospace;
  white-space: pre-wrap;
  max-height: 400px;
  overflow-y: auto;
  border: 1px solid var(--border);
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ── Charts ───────────────────────────────────────── */
.chart-container { min-height: 300px; }

/* ── Progress bar ─────────────────────────────────── */
.progress-bar { background-color: var(--brand-primary); }
.bg-success   { background-color: #059669 !important; }

/* ── Login ────────────────────────────────────────── */
.login-page {
  min-height: 100vh;
  background: linear-gradient(150deg, #090f1e 0%, #112242 55%, #0d1e40 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.login-card {
  width: 100%;
  max-width: 390px;
  background: #fff;
  border-radius: 18px;
  padding: 2.5rem;
  box-shadow: 0 24px 64px rgba(0,0,0,0.4);
}

.login-logo {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.5px;
  margin-bottom: 0.2rem;
}

.login-sub {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

/* ── Responsive ───────────────────────────────────── */
@media (max-width: 768px) {
  .sidebar {
    transform: translateX(-100%);
  }
  .sidebar.open {
    transform: translateX(0);
    box-shadow: 8px 0 32px rgba(0,0,0,0.4);
  }
  .main-wrapper { margin-left: 0; }
  .topbar-toggle { display: block; }
  .content-area { padding: 1rem; }
}

/* ── Mobile enquiries card view ───────────────────── */
@media (max-width: 680px) {
  .enq-table-wrap.table-responsive { overflow-x: visible; }

  .enq-table-wrap table,
  .enq-table-wrap thead,
  .enq-table-wrap tbody,
  .enq-table-wrap tr,
  .enq-table-wrap td { display: block; }

  .enq-table-wrap thead { display: none; }

  .enq-table-wrap tr {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: 0.875rem 1rem;
    margin-bottom: 0.5rem;
    cursor: pointer;
    position: relative;
    transition: border-color 0.12s, box-shadow 0.12s;
  }
  .enq-table-wrap tr:hover {
    border-color: var(--brand-primary-light);
    box-shadow: var(--shadow-sm);
  }
  .enq-row-stale { border-left: 3px solid #f59e0b !important; }

  .enq-table-wrap td {
    border: none;
    padding: 0.1rem 0;
    font-size: 0.82rem;
  }
  .enq-table-wrap td::before {
    content: attr(data-label);
    font-size: 0.63rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: var(--text-muted);
    display: block;
    margin-top: 0.4rem;
    margin-bottom: 0.05rem;
  }

  /* Ref — large, no label */
  .enq-table-wrap td.td-ref {
    font-weight: 800;
    font-size: 0.95rem;
    color: var(--text-primary);
    padding-right: 6rem;
  }
  .enq-table-wrap td.td-ref::before { display: none; }

  /* Status — top-right corner */
  .enq-table-wrap td.td-status {
    position: absolute;
    top: 0.875rem; right: 1rem;
    padding: 0; margin: 0;
  }
  .enq-table-wrap td.td-status::before { display: none; }

  /* Action button & assigned columns — hidden on mobile (row is clickable) */
  .enq-table-wrap td.td-action   { display: none; }
  .enq-table-wrap td.td-assigned { display: none; }

  /* Pagination bar stacks on mobile */
  .pagination-bar {
    flex-direction: column;
    align-items: flex-start;
  }
}
