/* styles.css — Centralized CSS for event-admin */

:root {
  --ink: #0b0b12;
  --surface: #111120;
  --card: #17172a;
  --card2: #1e1e35;
  --border: rgba(255,255,255,0.07);
  --border2: rgba(255,255,255,0.12);
  --accent: #e8ff47;
  --accent-dim: rgba(232,255,71,0.12);
  --purple: #7c3aed;
  --purple-dim: rgba(124,58,237,0.15);
  --green: #34d399;
  --green-dim: rgba(52,211,153,0.12);
  --red: #f87171;
  --red-dim: rgba(248,113,113,0.12);
  --yellow: #fbbf24;
  --yellow-dim: rgba(251,191,36,0.12);
  --blue: #60a5fa;
  --blue-dim: rgba(96,165,250,0.12);
  --text: #e2e2f0;
  --text2: #a0a0b8;
  --muted: #5a5a72;
  --sidebar-w: 240px;
  --header-h: 64px;
}

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

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--ink);
  color: var(--text);
  min-height: 100vh;
  display: flex;
}

/* ─── SIDEBAR ─────────────────────────── */
.sidebar {
  width: var(--sidebar-w);
  min-height: 100vh;
  background: var(--surface);
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0; left: 0;
  z-index: 100;
}

.sidebar-logo {
  height: var(--header-h);
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--border);
}
.logo-box {
  width: 34px; height: 34px;
  background: linear-gradient(135deg, var(--purple), #a855f7);
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 20px rgba(124,58,237,0.35);
}
.logo-box svg { width:18px; height:18px; }
.logo-text {
  font-family: 'Sans-Serif', sans-serif;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: -0.3px;
  line-height: 1.1;
}
.logo-sub { font-size: 10px; color: var(--muted); font-weight: 400; }

.sidebar-nav {
  flex: 1;
  padding: 16px 12px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.nav-section-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--muted);
  padding: 12px 8px 6px;
}

.nav-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 9px;
  text-decoration: none;
  color: var(--text2);
  font-size: 13.5px;
  font-weight: 500;
  transition: all 0.15s;
  position: relative;
}
.nav-item:hover {
  background: rgba(255,255,255,0.05);
  color: var(--text);
}
.nav-item.active {
  background: var(--accent-dim);
  color: var(--accent);
  font-weight: 600;
}
.nav-item.active::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 3px; height: 18px;
  background: var(--accent);
  border-radius: 0 3px 3px 0;
}
.nav-item svg { width:16px; height:16px; flex-shrink:0; }

.sidebar-footer {
  padding: 16px 12px;
  border-top: 1px solid var(--border);
}

.sidebar-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(0,0,0,0.5);
  z-index: 99;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

body.sidebar-open .sidebar-overlay {
  opacity: 1;
  pointer-events: auto;
}

.user-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 9px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
}
.user-avatar {
  width: 32px; height: 32px;
  background: linear-gradient(135deg, var(--purple), #6366f1);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Sans-Serif', sans-serif;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}
.user-info { flex: 1; min-width: 0; }
.user-name { font-size: 12px; font-weight: 600; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.user-role { font-size: 10px; color: var(--muted); }
.logout-btn {
  background: none; border: none;
  color: var(--muted); cursor: pointer;
  padding: 4px;
  border-radius: 5px;
  transition: color 0.15s;
  display: flex;
}
.logout-btn:hover { color: var(--red); }

/* ─── MAIN ─────────────────────────── */
.main {
  margin-left: var(--sidebar-w);
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

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

.sidebar-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  cursor: pointer;
  padding: 8px;
  border-radius: 6px;
  transition: background 0.15s;
  margin-right: 16px;
}
.sidebar-toggle:hover { background: var(--card); }
.sidebar-toggle svg { width: 20px; height: 20px; }

.page-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
}
.page-breadcrumb .current {
  color: var(--text);
  font-weight: 600;
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: 12px;
}
.topbar-badge {
  background: var(--purple-dim);
  border: 1px solid rgba(124,58,237,0.25);
  color: #a78bfa;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
}

.content {
  padding: 28px;
  flex: 1;
}

/* ─── GLOBAL COMPONENTS ─────────────── */
.page-header {
  margin-bottom: 28px;
}
.page-header h1 {
  font-family: 'Sans-Serif', sans-serif;
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.5px;
}
.page-header p {
  font-size: 13px;
  color: var(--text2);
  margin-top: 4px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin-bottom: 28px;
}

.stat-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s;
}
.stat-card:hover {
  border-color: var(--border2);
  transform: translateY(-2px);
}
.stat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
}
.stat-card.green::before { background: var(--green); }
.stat-card.purple::before { background: var(--purple); }
.stat-card.yellow::before { background: var(--yellow); }
.stat-card.blue::before { background: var(--blue); }

.stat-label { font-size: 11px; color: var(--muted); font-weight: 600; letter-spacing: 0.5px; text-transform: uppercase; }
.stat-value {
  font-family: 'Sans-Serif', sans-serif;
  font-size: 30px;
  font-weight: 800;
  margin: 8px 0 4px;
  letter-spacing: -1px;
}
.stat-card.green .stat-value { color: var(--green); }
.stat-card.purple .stat-value { color: #a78bfa; }
.stat-card.yellow .stat-value { color: var(--yellow); }
.stat-card.blue .stat-value { color: var(--blue); }

.stat-sub { font-size: 12px; color: var(--muted); }

/* Card */
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}
.card-header {
  padding: 20px 24px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
  gap: 12px;
  flex-wrap: wrap;
}
.card-title {
  font-family: 'Sans-Serif', sans-serif;
  font-size: 15px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}
.card-title svg { width:16px; height:16px; }

/* Search + Filter bar */
.toolbar {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.search-box {
  position: relative;
}
.search-box svg {
  position: absolute;
  left: 11px; top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
  pointer-events: none;
  width: 14px; height: 14px;
}
.search-box input {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 9px;
  padding: 8px 12px 8px 34px;
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  outline: none;
  width: 220px;
  transition: border-color 0.2s;
}
.search-box input:focus {
  border-color: var(--purple);
  background: rgba(124,58,237,0.05);
}
.search-box input::placeholder { color: var(--muted); }

select.filter-select {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 9px;
  padding: 8px 12px;
  color: var(--text2);
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  outline: none;
  cursor: pointer;
  transition: border-color 0.2s;
}
select.filter-select:focus { border-color: var(--purple); }
select.filter-select option { background: var(--card2); color: var(--text); }

/* Table */
.table-wrap { overflow-x: auto; }
table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}
thead th {
  padding: 12px 16px;
  text-align: left;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--muted);
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
}
tbody tr {
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: background 0.12s;
}
tbody tr:last-child { border-bottom: none; }
tbody tr:hover { background: rgba(255,255,255,0.025); }
tbody td {
  padding: 14px 16px;
  color: var(--text);
  vertical-align: middle;
}
.td-muted { color: var(--text2); }
.td-mono {
  font-family: 'Courier New', monospace;
  font-size: 12px;
  color: var(--text2);
}

/* Badges */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  white-space: nowrap;
}
.badge::before { content: ''; width:6px; height:6px; border-radius:50%; }
.badge-green  { background: var(--green-dim);  color: var(--green);  border: 1px solid rgba(52,211,153,0.2); }
.badge-green::before  { background: var(--green); }
.badge-red    { background: var(--red-dim);    color: var(--red);    border: 1px solid rgba(248,113,113,0.2); }
.badge-red::before    { background: var(--red); }
.badge-yellow { background: var(--yellow-dim); color: var(--yellow); border: 1px solid rgba(251,191,36,0.2); }
.badge-yellow::before { background: var(--yellow); }
.badge-blue   { background: var(--blue-dim);   color: var(--blue);   border: 1px solid rgba(96,165,250,0.2); }
.badge-blue::before   { background: var(--blue); }
.badge-purple { background: var(--purple-dim); color: #a78bfa;       border: 1px solid rgba(124,58,237,0.2); }
.badge-purple::before { background: #a78bfa; }
.badge-gray   { background: rgba(255,255,255,0.05); color: var(--muted); border: 1px solid var(--border); }
.badge-gray::before   { background: var(--muted); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 12.5px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.15s;
  text-decoration: none;
  white-space: nowrap;
}
.btn svg { width:14px; height:14px; }
.btn-primary  { background: var(--accent); color: var(--ink); }
.btn-primary:hover  { box-shadow: 0 4px 14px rgba(232,255,71,0.3); transform: translateY(-1px); }
.btn-ghost    { background: rgba(255,255,255,0.06); color: var(--text2); border: 1px solid var(--border); }
.btn-ghost:hover    { background: rgba(255,255,255,0.1); color: var(--text); }
.btn-danger   { background: var(--red-dim); color: var(--red); border: 1px solid rgba(248,113,113,0.2); }
.btn-danger:hover   { background: rgba(248,113,113,0.2); }
.btn-success  { background: var(--green-dim); color: var(--green); border: 1px solid rgba(52,211,153,0.2); }
.btn-success:hover  { background: rgba(52,211,153,0.2); }
.btn-sm { padding: 5px 10px; font-size: 11.5px; }
.btn-icon { padding: 7px; }

/* Pagination */
.pagination {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 16px 24px;
  border-top: 1px solid var(--border);
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.pag-info { font-size: 12px; color: var(--muted); }
.pag-buttons { display: flex; gap: 4px; }
.pag-btn {
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 7px;
  border: 1px solid var(--border);
  background: none;
  color: var(--text2);
  font-size: 12px;
  font-family: 'DM Sans', sans-serif;
  cursor: pointer;
  transition: all 0.12s;
  text-decoration: none;
}
.pag-btn:hover { background: rgba(255,255,255,0.06); color: var(--text); }
.pag-btn.active { background: var(--accent); color: var(--ink); border-color: var(--accent); font-weight: 700; }
.pag-btn:disabled { opacity: 0.35; cursor: not-allowed; }

/* Toast */
#toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.toast {
  background: var(--card2);
  border: 1px solid var(--border2);
  border-radius: 12px;
  padding: 12px 18px;
  font-size: 13px;
  font-weight: 500;
  min-width: 260px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  animation: toastIn 0.3s cubic-bezier(0.16,1,0.3,1) both;
}
.toast.success { border-left: 3px solid var(--green); }
.toast.error   { border-left: 3px solid var(--red); }
.toast.info    { border-left: 3px solid var(--blue); }
@keyframes toastIn {
  from { opacity:0; transform: translateX(20px); }
  to   { opacity:1; transform: translateX(0); }
}

/* Modal */
.modal-overlay {
  position: fixed; inset:0;
  background: rgba(0,0,0,0.7);
  z-index: 1000;
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.2s;
  backdrop-filter: blur(4px);
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal {
  background: var(--card);
  border: 1px solid var(--border2);
  border-radius: 18px;
  width: 100%;
  max-width: 520px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.6);
  transform: scale(0.95) translateY(10px);
  transition: transform 0.25s cubic-bezier(0.16,1,0.3,1);
}
.modal-overlay.open .modal { transform: scale(1) translateY(0); }
.modal-header {
  padding: 22px 24px 16px;
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
}
.modal-title {
  font-family: 'Sans-Serif', sans-serif;
  font-size: 16px;
  font-weight: 700;
}
.modal-close {
  background: none; border: none;
  color: var(--muted); cursor: pointer;
  padding: 4px; border-radius: 6px;
  transition: color 0.15s;
  display: flex;
}
.modal-close:hover { color: var(--text); }
.modal-body { padding: 20px 24px; }
.modal-footer {
  padding: 16px 24px;
  border-top: 1px solid var(--border);
  display: flex; justify-content: flex-end; gap: 10px;
}

/* Form in Modal */
.form-row { margin-bottom: 16px; }
.form-row label {
  display: block;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.7px; text-transform: uppercase;
  color: var(--muted); margin-bottom: 7px;
}
.form-row input, .form-row select {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 9px;
  padding: 10px 13px;
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  outline: none;
  transition: border-color 0.2s;
}
.form-row input:focus, .form-row select:focus {
  border-color: var(--purple);
  background: rgba(124,58,237,0.05);
}
.form-row select option { background: var(--card2); }
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

/* Loading */
.spinner {
  width: 18px; height: 18px;
  border: 2px solid rgba(255,255,255,0.15);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  display: inline-block;
}
@keyframes spin { to { transform: rotate(360deg); } }

.table-loading {
  padding: 60px;
  text-align: center;
  color: var(--muted);
  font-size: 13px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.empty-state {
  padding: 60px;
  text-align: center;
  color: var(--muted);
}
.empty-state svg { width:40px; height:40px; margin-bottom:12px; opacity:0.3; }
.empty-state p { font-size: 13px; }

/* Avatar initials */
.avatar {
  width: 34px; height: 34px;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--purple-dim), var(--blue-dim));
  border: 1px solid var(--border2);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700;
  color: #c4b5fd;
  flex-shrink: 0;
  font-family: 'Sans-Serif', sans-serif;
}

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

/* Responsive */
@media (max-width: 768px) {
  .sidebar { transform: translateX(-100%); }
  .main { margin-left: 0; }
  .sidebar-toggle { display: flex; }
}

@media (min-width: 769px) {
  .sidebar { transform: translateX(0); }
  .main { margin-left: var(--sidebar-w); }
}

body.sidebar-open .sidebar {
  transform: translateX(0);
}

/* ─── LOGIN PAGE ─────────────────────── */
:root {
  --ink: #0d0d14;
  --surface: #13131f;
  --card: #1a1a2e;
  --border: rgba(255,255,255,0.07);
  --accent: #e8ff47;
  --accent2: #7c3aed;
  --text: #e8e8f0;
  --muted: #6b6b80;
}

body.login {
  min-height: 100vh;
  background: var(--ink);
  font-family: 'DM Sans', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: var(--text);
}

body.login::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 20% 20%, rgba(124,58,237,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 80% 80%, rgba(232,255,71,0.08) 0%, transparent 60%);
  pointer-events: none;
  animation: bgPulse 8s ease-in-out infinite alternate;
}
@keyframes bgPulse {
  from { opacity: 0.6; }
  to   { opacity: 1; }
}

body.login::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.login-wrapper {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 420px;
  padding: 24px;
  animation: slideUp 0.6s cubic-bezier(0.16,1,0.3,1) both;
}
@keyframes slideUp {
  from { opacity:0; transform: translateY(30px); }
  to   { opacity:1; transform: translateY(0); }
}

.login-brand {
  text-align: center;
  margin-bottom: 36px;
}
.brand-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--accent2), #a855f7);
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  box-shadow: 0 0 40px rgba(124,58,237,0.4);
}
.brand-icon svg { width:28px; height:28px; }
.brand-title {
  font-family: 'Sans-Serif', sans-serif;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--text);
}
.brand-sub {
  font-size: 13px;
  color: var(--muted);
  margin-top: 4px;
  letter-spacing: 0.3px;
}

.login-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px 32px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.04) inset;
  backdrop-filter: blur(12px);
}

.card-heading {
  font-family: 'Sans-Serif', sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 6px;
}
.card-sub { font-size: 13px; color: var(--muted); margin-bottom: 28px; }

.form-group { margin-bottom: 18px; }
label {
  display: block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.input-wrap {
  position: relative;
}
.input-wrap .icon {
  position: absolute;
  left: 14px; top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
  pointer-events: none;
}
input[type=text], input[type=password] {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 14px 12px 42px;
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
input:focus {
  border-color: var(--accent2);
  box-shadow: 0 0 0 3px rgba(124,58,237,0.2);
  background: rgba(124,58,237,0.05);
}

.error-box {
  background: rgba(239,68,68,0.1);
  border: 1px solid rgba(239,68,68,0.3);
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 13px;
  color: #f87171;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-login {
  width: 100%;
  background: var(--accent);
  color: var(--ink);
  border: none;
  border-radius: 10px;
  padding: 13px;
  font-family: 'Sans-Serif', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.3px;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s, opacity 0.15s;
  margin-top: 8px;
}
.btn-login:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(232,255,71,0.3);
}
.btn-login:active { transform: translateY(0); }

.login-footer {
  text-align: center;
  font-size: 11px;
  color: var(--muted);
  margin-top: 24px;
}

/* ─── ADDITIONAL CLASSES FOR INLINE STYLES ─────────────────────── */

/* Quick links grid */
.quick-links-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.quick-link-card {
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  transition: border-color 0.2s, transform 0.2s;
}

.quick-link-card:hover {
  border-color: rgba(232,255,71,0.3);
  transform: translateY(-2px);
}

.quick-link-icon {
  width: 48px;
  height: 48px;
  background: var(--accent-dim);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.quick-link-icon.blue {
  background: var(--blue-dim);
}

.quick-link-title {
  font-family: 'Sans-Serif', sans-serif;
  font-weight: 700;
  font-size: 15px;
}

.quick-link-desc {
  font-size: 12px;
  color: var(--text2);
  margin-top: 3px;
}

/* Stat value large */
.stat-value-large {
  font-size: 22px;
}

/* Order total count badge */
.order-total-count {
  background: var(--blue-dim);
  color: var(--blue);
  padding: 2px 8px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 600;
  font-family: 'DM Sans', sans-serif;
}

/* Modal max width */
.modal-small {
  max-width: 420px;
}

/* Order modal info */
.order-modal-info {
  font-size: 13px;
  color: var(--text2);
  margin-bottom: 18px;
}

/* Table cell styles */
.td-number {
  font-size: 11px;
}

.td-customer-avatar {
  background: linear-gradient(135deg, rgba(96,165,250,0.2), rgba(52,211,153,0.1));
}

.td-customer-name {
  font-weight: 600;
  font-size: 13px;
}

.td-customer-email {
  font-size: 11px;
  color: var(--muted);
}

.td-order-date {
  font-size: 12px;
  color: var(--text2);
}

.td-order-id {
  font-size: 13px;
  color: var(--blue);
}

.td-ticket-code {
  background: var(--accent-dim);
  color: var(--accent);
  padding: 3px 8px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
  font-family: 'Courier New', monospace;
}

.td-no-ticket {
  color: var(--muted);
  font-size: 12px;
}

.td-order-total {
  font-weight: 600;
  font-size: 13px;
  color: var(--text);
}

/* Pagination ellipsis */
.pag-ellipsis {
  color: var(--muted);
  padding: 0 4px;
}
