/* ── Buttons ────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  border: none;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  -webkit-tap-highlight-color: transparent;
  min-height: 44px;
}

.btn:active { transform: scale(0.97); }
.btn:disabled { opacity: 0.5; pointer-events: none; }

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  box-shadow: 0 4px 20px var(--primary-glow);
}
.btn-primary:hover { box-shadow: 0 8px 30px rgba(99,102,241,0.4); transform: translateY(-1px); }

.btn-secondary {
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--border-strong);
}
.btn-secondary:hover { border-color: var(--primary-border); }

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

.btn-ghost {
  background: transparent;
  color: var(--primary);
  padding: 10px 16px;
}

.btn-danger {
  background: var(--danger-bg);
  color: var(--danger);
  border: 1px solid var(--danger-border);
}

.btn-outline-danger {
  background: transparent;
  color: var(--danger);
  border: 1px solid var(--danger-border);
}

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

.btn-success {
  background: var(--success);
  color: #fff;
}

.btn-sm { padding: 8px 16px; font-size: 13px; border-radius: 10px; }
.btn-lg { padding: 16px 32px; font-size: 17px; height: 52px; border-radius: var(--radius-md); }
.btn-block { width: 100%; }
.btn-round { border-radius: var(--radius-full); }

/* ── Inputs ─────────────────────────────────────────── */
.input-group { margin-bottom: 16px; }

.input-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.input {
  width: 100%;
  padding: 14px 18px;
  background: var(--input-bg);
  border: 2px solid var(--input-border);
  border-radius: 12px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 15px;
  outline: none;
  transition: all 0.2s ease;
}

.input::placeholder { color: var(--text-placeholder); }
.input:focus { border-color: var(--primary); background: rgba(99,102,241,0.06); box-shadow: 0 0 0 3px rgba(99,102,241,0.1); }
.input-missing { border-color: var(--warning); background: var(--warning-bg); }
.input-missing:focus { border-color: var(--warning); }

select.input {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%238888a0' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

select.input option { background: var(--surface); color: var(--text); }

.input-row {
  display: flex;
  gap: 12px;
}
.input-row .input-group { flex: 1; }

/* Password toggle */
.input-password-wrap {
  position: relative;
}
.input-password-wrap .input { padding-right: 48px; }
.input-password-toggle {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--text-secondary);
  cursor: pointer;
  padding: 4px;
  display: flex;
}

/* ── Cards ──────────────────────────────────────────── */
.card {
  background: var(--surface);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 20px;
  transition: all 0.2s ease;
}

.card:active { transform: scale(0.98); }

.card-flat {
  background: var(--surface-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 14px;
}

/* ── Status Badges ──────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 600;
  text-transform: capitalize;
}

.badge-confirmed, .badge-active { background: var(--success-bg); color: var(--success); border: 1px solid var(--success-border); }
.badge-pending, .badge-requested { background: var(--warning-bg); color: var(--warning); border: 1px solid var(--warning-border); }
.badge-declined, .badge-inactive { background: var(--danger-bg); color: var(--danger); border: 1px solid var(--danger-border); }
.badge-primary { background: var(--primary-bg); color: var(--primary); border: 1px solid var(--primary-border); }

/* ── Auth Screens ───────────────────────────────────── */
.auth-screen {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100%;
  padding: 40px 24px;
}

.auth-logo {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.auth-logo::before {
  content: '';
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(99,102,241,0.12) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.auth-logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  width: 56px;
  height: 56px;
  position: relative;
  z-index: 1;
}

.auth-logo h1 {
  font-family: var(--font-body);
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -1px;
  position: relative;
  z-index: 1;
}

.auth-logo h1 span { color: var(--primary); }

.auth-logo p {
  color: var(--text-secondary);
  font-size: 15px;
  margin-top: 8px;
  position: relative;
  z-index: 1;
}

.auth-form { margin-bottom: 24px; }

.auth-footer {
  text-align: center;
  color: var(--text-secondary);
  font-size: 14px;
}

.auth-footer a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  cursor: pointer;
}

.auth-legal-footer {
  text-align: center;
  padding: 16px 0 8px;
  font-size: 12px;
  color: var(--text-secondary);
  opacity: 0.6;
}

.auth-legal-footer a {
  color: var(--text-secondary);
  text-decoration: none;
}

.auth-legal-footer a:hover {
  color: var(--text-muted);
  text-decoration: underline;
}

.auth-legal-footer span {
  margin: 0 6px;
}

.auth-tos-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 16px;
  font-size: 13px;
  color: var(--text-secondary);
  cursor: pointer;
  line-height: 1.4;
}

.auth-tos-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 1px;
  flex-shrink: 0;
  accent-color: var(--primary);
  cursor: pointer;
}

.auth-tos-check a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
}

.auth-tos-check a:hover {
  text-decoration: underline;
}

.auth-error {
  background: var(--danger-bg);
  border: 1px solid var(--danger-border);
  color: var(--danger);
  padding: 12px 16px;
  border-radius: var(--radius-md);
  font-size: 14px;
  margin-bottom: 16px;
  text-align: center;
}

/* ── Role Select ────────────────────────────────────── */
.role-grid {
  display: flex;
  gap: 12px;
  margin: 24px 0;
}

.role-card {
  flex: 1;
  background: var(--surface);
  border: 2px solid var(--card-border);
  border-radius: 16px;
  padding: 16px 12px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
}

.role-card:active { transform: scale(0.97); }
.role-card:hover, .role-card.selected { border-color: var(--primary); }
.role-card.selected { background: var(--primary-bg); box-shadow: 0 0 20px rgba(99,102,241,0.15); }

.role-card h3 {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 2px;
}

.role-card p {
  color: var(--text-secondary);
  font-size: 11px;
  line-height: 1.3;
}

.role-card .role-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--primary-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
  color: var(--primary);
}


/* ── Tour Request Modal ─────────────────────────────── */
#modal-container {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

#modal-container .modal-overlay {
  position: absolute;
  inset: 0;
  background: var(--overlay);
}

.modal-sheet {
  position: relative;
  width: 100%;
  max-width: 480px;
  max-height: 85vh;
  background: var(--surface);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  overflow-y: auto;
  animation: slideUp 0.3s ease;
}

.modal-handle {
  width: 36px;
  height: 4px;
  background: var(--border-strong);
  border-radius: 2px;
  margin: 12px auto 0;
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px 12px;
  border-bottom: 1px solid var(--border);
}

.modal-header h2 {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 600;
}

.modal-close {
  background: none;
  border: none;
  color: var(--text-secondary);
  cursor: pointer;
  padding: 4px;
  display: flex;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}

.modal-body { padding: 20px; }
.modal-footer { padding: 16px 20px calc(16px + var(--safe-bottom)); }

@keyframes slideUp {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}


/* ── Notifications ──────────────────────────────────── */
.notification-list {
  display: flex;
  flex-direction: column;
}

.notification-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  transition: background 0.15s, transform 0.25s ease, opacity 0.25s ease;
  overflow: hidden;
  position: relative;
}

.notification-item.unread { background: var(--primary-bg); margin: 0 -16px; padding: 14px 16px; border-radius: 12px; }

.notif-dismiss-btn {
  background: none;
  border: none;
  color: var(--text-placeholder);
  padding: 4px;
  cursor: pointer;
  flex-shrink: 0;
  border-radius: 6px;
  transition: color 0.15s, background 0.15s;
  margin-top: 2px;
}
.notif-dismiss-btn:hover { color: var(--danger); background: var(--danger-bg); }

.notification-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.notification-icon.tour { background: var(--primary-bg); color: var(--primary); }
.notification-icon.like { background: var(--success-bg); color: var(--success); }
.notification-icon.alert { background: var(--warning-bg); color: var(--warning); }
.notification-icon.system { background: var(--surface-alt); color: var(--text-secondary); }

.notification-content { flex: 1; min-width: 0; }

.notification-text {
  font-size: 14px;
  line-height: 1.4;
  margin-bottom: 4px;
}

.notification-text strong { font-weight: 600; }

.notification-time {
  font-size: 12px;
  color: var(--text-secondary);
}

.notification-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
  margin-top: 6px;
}

/* ── Empty State ────────────────────────────────────── */
.empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 24px;
  text-align: center;
}

.empty-state svg { color: var(--text-muted); margin-bottom: 16px; opacity: 0.4; }
.empty-state h3 { font-family: var(--font-body); font-weight: 600; margin-bottom: 6px; }
.empty-state p { color: var(--text-secondary); font-size: 14px; max-width: 280px; }

/* ── Loading ────────────────────────────────────────── */
.loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px;
}

.spinner {
  width: 32px;
  height: 32px;
  border: 3px solid var(--border);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

.spinner-sm { width: 20px; height: 20px; border-width: 2px; }

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

.loading-spinner {
  width: 32px;
  height: 32px;
  border: 3px solid var(--border);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 0 auto;
}

.back-btn {
  background: none;
  border: none;
  color: var(--text);
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  min-width: 44px;
  min-height: 44px;
  justify-content: center;
}

.screen-title {
  font-size: 20px;
  font-weight: 700;
  font-family: var(--font-body);
}

.loading-text {
  color: var(--text-secondary);
  font-size: 14px;
  margin-top: 12px;
}

/* Skeleton shimmer */
.skeleton {
  background: linear-gradient(90deg, var(--surface) 25%, var(--surface-alt) 50%, var(--surface) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: 12px;
}

@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.skeleton-card {
  width: 100%;
  height: 100%;
  border-radius: 20px;
}

.skeleton-text {
  height: 14px;
  width: 60%;
  margin-bottom: 8px;
}

.skeleton-text-sm {
  height: 10px;
  width: 40%;
}

/* ── Toast ──────────────────────────────────────────── */
#toast-container {
  position: fixed;
  top: calc(20px + var(--safe-top));
  left: 50%;
  transform: translateX(-50%);
  z-index: 200;
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 440px;
  width: calc(100% - 40px);
}

.toast {
  padding: 14px 18px;
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 500;
  animation: fadeInDown 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
  backdrop-filter: blur(12px);
}

.toast-success { background: var(--success); color: #fff; }
.toast-error { background: var(--danger); color: #fff; }
.toast-info { background: var(--primary); color: #fff; }

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

/* ── Animations ─────────────────────────────────────── */
.fade-in {
  animation: fadeIn 0.3s ease;
}
.slide-in-right {
  animation: slideInRight 0.25s ease both;
}
.slide-in-left {
  animation: slideInLeft 0.25s ease both;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes slideInRight {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* Stagger animation classes */
.stagger-1 { animation-delay: 0.05s; }
.stagger-2 { animation-delay: 0.1s; }
.stagger-3 { animation-delay: 0.15s; }
.stagger-4 { animation-delay: 0.2s; }


/* ── Pull to Refresh ────────────────────────────────── */
.pull-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  color: var(--text-secondary);
  font-size: 13px;
  gap: 8px;
}

/* ── Invite Code ────────────────────────────────────── */
.invite-code-display {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: var(--primary-bg);
  border: 1px solid var(--primary-border);
  border-radius: 16px;
  margin: 16px 0;
}

.invite-code-value {
  font-family: monospace;
  font-size: 24px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 2px;
  flex: 1;
}

.invite-code-copy {
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font-body);
  min-height: 44px;
}

/* ── Import Listing Checkbox ────────────────────────── */
#import-listing-list .listing-item {
  position: relative;
}

#import-listing-list input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  border: 2px solid var(--border-strong);
  border-radius: 6px;
  background: var(--input-bg);
  cursor: pointer;
  flex-shrink: 0;
  position: relative;
}

#import-listing-list input[type="checkbox"]:checked {
  background: var(--primary);
  border-color: var(--primary);
}

#import-listing-list input[type="checkbox"]:checked::after {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}

/* Search result checkbox */
.search-result-check {
  appearance: none;
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  border: 2px solid var(--border-strong);
  border-radius: 6px;
  background: var(--input-bg);
  cursor: pointer;
  flex-shrink: 0;
  position: relative;
}

.search-result-check:checked {
  background: var(--primary);
  border-color: var(--primary);
}

.search-result-check:checked::after {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}

/* ── Search Area Results ────────────────────────────── */
.search-result-card {
  display: flex;
  gap: 12px;
  padding: 12px;
  border: 1px solid var(--card-border);
  border-radius: 16px;
  margin-bottom: 8px;
  align-items: center;
  background: var(--surface);
  transition: all 0.2s;
}

.search-result-card:active { border-color: var(--primary-border); }


/* ── Utility ────────────────────────────────────────── */
.hidden { display: none !important; }
.flex { display: flex; }
.flex-1 { flex: 1; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-8 { gap: 8px; }
.gap-12 { gap: 12px; }
.gap-16 { gap: 16px; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.p-16 { padding: 16px; }
.p-20 { padding: 20px; }
.text-center { text-align: center; }
.w-full { width: 100%; }


/* ── Responsive ─────────────────────────────────────── */
@media (min-width: 481px) {
  #app {
    border-left: 1px solid var(--border);
    border-right: 1px solid var(--border);
  }

  body {
    background: #09090f;
  }
}

/* ═══════════════════════════════════════════════════════
   LIST CONTROLS — Search, Filter, Sort, Pagination
   ═══════════════════════════════════════════════════════ */

.list-controls {
  padding: 12px 16px 0;
  position: sticky;
  top: 0;
  z-index: 10;
  background: var(--background, #0f0f1a);
}
.list-controls-search-row {
  display: flex;
  gap: 8px;
  margin-bottom: 10px;
}
.list-search-input {
  flex: 1;
  padding: 10px 14px;
  background: #1a1a2e;
  border: 1px solid #2a2a4a;
  border-radius: 10px;
  color: #ffffff;
  font-size: 14px;
  font-family: 'Outfit', sans-serif;
  outline: none;
  transition: border-color 0.2s;
}
.list-search-input:focus { border-color: #6366f1; }
.list-search-input::placeholder { color: #666; }
.list-filter-toggle {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1a1a2e;
  border: 1px solid #2a2a4a;
  border-radius: 10px;
  color: #9ca3af;
  cursor: pointer;
  flex-shrink: 0;
  transition: border-color 0.2s, color 0.2s;
}
.list-filter-toggle:hover,
.list-filter-toggle.active { border-color: #6366f1; color: #6366f1; }
.list-filter-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 12px 0;
  border-top: 1px solid #2a2a4a;
  margin-bottom: 8px;
}
.list-filter-panel.hidden {
  display: none;
}
.list-filter-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.list-filter-label {
  color: #9ca3af;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.list-filter-select,
.list-filter-input {
  padding: 8px 10px;
  background: #1a1a2e;
  border: 1px solid #2a2a4a;
  border-radius: 8px;
  color: #ffffff;
  font-size: 13px;
  font-family: 'Outfit', sans-serif;
  outline: none;
}
.list-filter-select:focus,
.list-filter-input:focus { border-color: #6366f1; }
.list-filter-select option { background: #1a1a2e; color: #ffffff; }
.list-controls-sort-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 0 12px;
  border-top: 1px solid rgba(42, 42, 74, 0.5);
}
.list-sort-label {
  color: #9ca3af;
  font-size: 12px;
  white-space: nowrap;
}
.list-sort-select {
  flex: 1;
  padding: 6px 10px;
  background: transparent;
  border: 1px solid #2a2a4a;
  border-radius: 8px;
  color: #ffffff;
  font-size: 13px;
  font-family: 'Outfit', sans-serif;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%239ca3af' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  padding-right: 28px;
}
.list-sort-select option { background: #1a1a2e; }
.list-sort-dir {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid #2a2a4a;
  border-radius: 8px;
  color: #9ca3af;
  font-size: 16px;
  cursor: pointer;
  flex-shrink: 0;
}
.list-sort-dir:hover { border-color: #6366f1; color: #6366f1; }
.pagination-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 16px;
}
.page-btn {
  padding: 8px 14px;
  background: transparent;
  border: 1px solid #2a2a4a;
  border-radius: 8px;
  color: #9ca3af;
  font-size: 13px;
  font-family: 'Outfit', sans-serif;
  cursor: pointer;
  transition: all 0.2s;
}
.page-btn:hover:not(.disabled) { border-color: #6366f1; color: #6366f1; }
.page-btn.disabled { opacity: 0.3; cursor: not-allowed; }
.page-numbers {
  display: flex;
  align-items: center;
  gap: 2px;
}
.page-num {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 8px;
  color: #9ca3af;
  font-size: 14px;
  font-family: 'Outfit', sans-serif;
  cursor: pointer;
  transition: all 0.2s;
}
.page-num:hover { border-color: #2a2a4a; color: #ffffff; }
.page-num.active { background: #6366f1; color: #ffffff; border-color: #6366f1; font-weight: 600; }
.page-ellipsis { color: #666; padding: 0 4px; font-size: 14px; }
.pagination-info {
  text-align: center;
  color: #666;
  font-size: 12px;
  padding: 4px 16px 16px;
}
.list-empty-search {
  padding: 40px 24px;
  text-align: center;
}
.list-empty-search-icon { font-size: 32px; margin-bottom: 12px; }
.list-empty-search-title { color: #ffffff; font-size: 15px; font-weight: 600; margin-bottom: 6px; }
.list-empty-search-subtitle { color: #9ca3af; font-size: 13px; }

@media (max-width: 359px) {
  .list-filter-panel { grid-template-columns: 1fr; }
  .page-numbers { display: none; }
}

