:root {
  --bg:          #0d0d0f;
  --surface:     #151518;
  --surface2:    #1e1e24;
  --surface3:    #26262e;
  --border:      rgba(255,255,255,0.06);
  --border-soft: rgba(255,255,255,0.04);
  --accent:      #7c5cfc;
  --accent-dim:  #5a3fd4;
  --accent-glow: rgba(124,92,252,0.18);
  --success:     #22c55e;
  --danger:      #ef4444;
  --warning:     #f59e0b;
  --text:        #e8e8f0;
  --text-muted:  #7b7b99;
  --text-dim:    #4a4a62;
  --radius:      12px;
  --radius-lg:   18px;
  --font:        'Source Sans 3', 'Segoe UI', system-ui, sans-serif;
  --transition:  0.18s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  height: 100%;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 15px;
  line-height: 1.6;
  overflow: hidden;
}

/* Material Symbols base */
.material-symbols-rounded {
  font-family: 'Material Symbols Rounded';
  font-weight: normal;
  font-style: normal;
  font-size: 20px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-smoothing: antialiased;
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
  vertical-align: middle;
  user-select: none;
}
/* Filled variant helper */
.icon-fill { font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 24; }

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ─── Scrollbar ─── */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 99px; }
::-webkit-scrollbar-thumb:hover { background: var(--text-dim); }

/* ──────────────────────────────────────────────────
   VIEWS
   ────────────────────────────────────────────────── */
.view {
  position: absolute;
  inset: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
}
.view.active {
  opacity: 1;
  pointer-events: all;
}

/* ── View transition animations ── */
@keyframes at-enter-right {
  from { transform: translateX(52px); opacity: 0; }
  to   { transform: translateX(0);    opacity: 1; }
}
@keyframes at-enter-left {
  from { transform: translateX(-26px); opacity: 0; }
  to   { transform: translateX(0);     opacity: 1; }
}
@keyframes at-exit-left {
  from { transform: translateX(0);     opacity: 1; }
  to   { transform: translateX(-26px); opacity: 0; }
}
@keyframes at-exit-right {
  from { transform: translateX(0);    opacity: 1; }
  to   { transform: translateX(52px); opacity: 0; }
}
@keyframes at-fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.view.v-enter-right { animation: at-enter-right 0.3s  cubic-bezier(0.25,0.46,0.45,0.94) forwards; }
.view.v-enter-left  { animation: at-enter-left  0.28s cubic-bezier(0.25,0.46,0.45,0.94) forwards; }
.view.v-exit-left   { animation: at-exit-left   0.22s ease forwards; }
.view.v-exit-right  { animation: at-exit-right  0.22s ease forwards; }
.view.v-fade-in     { animation: at-fade-in     0.3s  ease forwards; }

/* ──────────────────────────────────────────────────
   LANDING
   ────────────────────────────────────────────────── */
#view-landing {
  align-items: center;
  justify-content: center;
  cursor: pointer;
  user-select: none;
  background: var(--bg);
  gap: 10px;
  flex-direction: column;
}
.landing-icon {
  font-size: 52px;
  color: var(--text-dim);
  animation: pulse 2.8s ease-in-out infinite;
  font-variation-settings: 'FILL' 0, 'wght' 200, 'GRAD' 0, 'opsz' 48;
}
.landing-hint {
  color: var(--text-dim);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  animation: pulse 2.8s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 0.3; }
  50%       { opacity: 0.8; }
}

/* ──────────────────────────────────────────────────
   STAFF LIST VIEW
   ────────────────────────────────────────────────── */
#view-staff {
  overflow: auto;
  padding: 48px 32px 32px;
}
.staff-header {
  margin-bottom: 40px;
  text-align: center;
}
.staff-header h1 {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--text);
}
.staff-header p {
  margin-top: 4px;
  color: var(--text-muted);
  font-size: 13px;
}
.staff-grid {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
}

/* Chip */
.staff-chip {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
  width: 100%;
}
.staff-chip:hover {
  background: var(--surface3);
  border-color: rgba(124,92,252,0.3);
  transform: translateX(4px);
}
.staff-chip:active { transform: translateX(2px); }

.staff-top-corner {
  position: absolute;
  top: 16px;
  right: 20px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 14px;
}
.global-est-clock {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: var(--text-muted);
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.02em;
}
.global-est-clock[hidden] { display: none !important; }
.global-est-clock .material-symbols-rounded {
  font-size: 17px;
  color: var(--accent);
}
.global-est-clock-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-dim);
}
.global-est-clock-text {
  font-family: monospace;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
}
.chip-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--accent-glow);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700;
  color: var(--accent);
  flex-shrink: 0;
  overflow: hidden;
  position: relative;
}
.chip-avatar img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}
.chip-avatar .initials {
  position: absolute;
  inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700;
  color: var(--accent);
}
.chip-avatar img + .initials { display: none; }
.chip-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  flex: 1;
}
.chip-count {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-dim);
  white-space: nowrap;
}
.chip-count .material-symbols-rounded { font-size: 15px; }
.chip-count.has-entries { color: var(--accent); }
.header-logout {
  position: static;
  background: transparent;
  border: none;
  color: var(--text-muted);
  padding: 5px 12px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 13px;
  font-family: var(--font);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: color var(--transition);
}
.header-logout .material-symbols-rounded { font-size: 16px; }
.header-logout:hover { color: var(--danger); }

/* ──────────────────────────────────────────────────
   INDIVIDUAL VIEW
   ────────────────────────────────────────────────── */
#view-individual {
  overflow: hidden;
}

.ind-topbar {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 20px;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.ind-heading {
  flex: 1;
  min-width: 0;
}
.ind-topbar-right {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.btn-back {
  background: transparent;
  border: none;
  color: var(--text-muted);
  padding: 6px 10px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 13px;
  font-family: var(--font);
  display: flex; align-items: center; gap: 5px;
  transition: color var(--transition), background var(--transition);
}
.btn-back .material-symbols-rounded { font-size: 17px; }
.btn-back:hover { color: var(--accent); background: var(--surface2); }
.ind-name {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
}
.ind-discord-id {
  font-size: 11px;
  color: var(--text-dim);
  font-family: monospace;
}
.ind-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--accent-glow);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 700;
  color: var(--accent);
  flex-shrink: 0;
  overflow: hidden;
  position: relative;
}
.ind-avatar img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}
.ind-avatar .initials {
  position: absolute;
  inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 700;
  color: var(--accent);
}
.ind-avatar img + .initials { display: none; }
.ind-refresh-btn {
  background: transparent;
  border: none;
  color: var(--text-dim);
  cursor: pointer;
  padding: 6px;
  border-radius: 6px;
  display: flex; align-items: center;
  font-size: 12px;
  font-family: var(--font);
  gap: 4px;
  transition: color var(--transition), background var(--transition);
}
.ind-refresh-btn .material-symbols-rounded { font-size: 17px; }
.ind-refresh-btn:hover { color: var(--accent); background: var(--surface2); }

/* Tabs */
.tabs {
  display: flex;
  gap: 2px;
  padding: 0 20px;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.tab-btn {
  padding: 12px 16px;
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 600;
  font-family: var(--font);
  cursor: pointer;
  transition: color var(--transition), border-color var(--transition);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.tab-icon { font-size: 17px; }
.tab-btn:hover { color: var(--text); }
.tab-btn.active { color: var(--accent); border-bottom-color: var(--accent); }
.tab-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-glow);
  color: var(--accent);
  border-radius: 99px;
  font-size: 10px;
  font-weight: 600;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  margin-left: 6px;
}

/* Tab panels */
.tab-panels {
  flex: 1;
  overflow: hidden;
  position: relative;
}
.tab-panel {
  display: none;
  position: absolute;
  inset: 0;
  overflow-y: auto;
  padding: 24px 28px;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.tab-panel.active { display: flex; }

/* All direct children of a tab-panel share the 1400px max-width column */
.tab-panel > * {
  width: 100%;
  max-width: 1400px;
}

/* ──────────────────────────────────────────────────
   FORMS
   ────────────────────────────────────────────────── */
.form-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  flex-shrink: 0;
}
.form-card--borderless {
  border: none;
}
.form-card h3 {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.09em;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.form-card h3 .material-symbols-rounded {
  font-size: 16px;
  color: var(--accent);
  font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 20;
}
.form-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
  flex: 1;
  min-width: 160px;
}
.form-group label {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  display: flex;
  align-items: center;
  gap: 4px;
}
.form-group label .material-symbols-rounded { font-size: 14px; }
.form-group input,
.form-group textarea {
  background: var(--surface2);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  color: var(--text);
  padding: 8px 12px;
  font-size: 13px;
  font-family: var(--font);
  outline: none;
  resize: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
}
.form-group textarea { min-height: 70px; }
.form-group-datetime {
  flex: 0 0 auto;
  min-width: 200px;
  max-width: 240px;
}
.form-actions {
  margin-top: 12px;
  display: flex;
  justify-content: flex-end;
}

/* Source tag hint */
.source-hint {
  font-size: 10px;
  color: var(--text-dim);
  margin-top: 3px;
}
.source-hint.channel { color: var(--accent); }

/* ──────────────────────────────────────────────────
   BUTTONS
   ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  border-radius: var(--radius);
  border: none;
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font);
  cursor: pointer;
  transition: background var(--transition), opacity var(--transition), transform var(--transition);
}
.btn .material-symbols-rounded { font-size: 18px; }
.btn:active { transform: scale(0.97); }
.btn-primary {
  background: var(--accent);
  color: #fff;
}
.btn-primary:hover { background: var(--accent-dim); }
.btn-primary:disabled { opacity: 0.5; cursor: not-allowed; }
.btn-ghost {
  background: transparent;
  border: none;
  color: var(--text-muted);
}
.btn-ghost:hover { color: var(--danger); }

/* Timeline: order hint above the rail */
.timeline-order-hint {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-dim);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.timeline-order-hint .material-symbols-rounded {
  font-size: 16px;
  color: var(--accent);
}

/* ──────────────────────────────────────────────────
   TIMELINE ENTRIES LIST
   ────────────────────────────────────────────────── */
.entries-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.empty-state {
  text-align: center;
  padding: 40px 20px;
  color: var(--text-dim);
  font-size: 13px;
}

/* Timeline rail + entries */
.timeline-feed {
  position: relative;
}

/* Timeline entry */
.timeline-entry {
  display: flex;
  gap: 12px;
  align-items: stretch;
  padding: 6px 0;
  position: relative;
}

.tl-dot-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  width: 22px;
  align-self: stretch;
  padding-top: 14px;
}
.tl-dot {
  position: relative;
  z-index: 2;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--accent), var(--accent-dim));
  box-shadow:
    0 0 0 3px var(--bg),
    0 0 12px var(--accent-glow);
  flex-shrink: 0;
}
.tl-line {
  z-index: 1;
  width: 2px;
  flex: 1 1 auto;
  min-height: 28px;
  margin-top: 8px;
  border-radius: 2px;
  background: linear-gradient(
    180deg,
    rgba(124, 92, 252, 0.55) 0%,
    rgba(124, 92, 252, 0.12) 100%
  );
}

.tl-shell {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  background: var(--surface);
  border: none;
  border-radius: var(--radius-lg);
  padding: 20px 24px;
}

.tl-group-messages {
  display: flex;
  flex-direction: column;
  gap: 0;
  flex: 1;
  min-width: 0;
}

.tl-msg-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.tl-msg-row:not(:first-child) {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--border-soft);
}

.tl-msg-body {
  flex: 1;
  min-width: 0;
}

.tl-meta-continue {
  margin-bottom: 4px;
}

.tl-content { flex: 1; min-width: 0; }
.tl-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 4px;
}
.tl-time {
  font-size: 11px;
  font-weight: 600;
  color: var(--accent);
  font-family: monospace;
  display: inline-flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px;
  max-width: 100%;
}
.tl-time .time-ny-muted {
  font-family: var(--font);
  font-weight: 500;
  color: var(--text-dim);
  font-size: 10px;
}
.card-entry-meta .time-local { color: var(--accent-dim); }
.card-entry-meta .time-ny-muted {
  font-size: 10px;
  font-weight: 500;
}
.tl-source {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
  max-width: 260px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.tl-source a {
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.tl-source a:hover { color: var(--accent); }
.channel-pill {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  background: var(--accent-glow);
  color: var(--accent);
  border-radius: 4px;
  padding: 1px 7px 1px 5px;
  font-size: 11px;
  font-weight: 600;
}
.channel-pill .material-symbols-rounded { font-size: 13px; }
.tl-notes {
  font-size: 13px;
  color: var(--text);
  white-space: pre-wrap;
  word-break: break-word;
}
.entry-delete {
  background: transparent;
  border: none;
  color: var(--text-dim);
  cursor: pointer;
  padding: 4px;
  border-radius: 4px;
  flex-shrink: 0;
  align-self: flex-start;
  display: flex; align-items: center; justify-content: center;
  transition: color var(--transition), background var(--transition);
}
.entry-delete .material-symbols-rounded { font-size: 17px; }
.entry-delete:hover {
  color: var(--danger);
  background: rgba(239,68,68,0.08);
}

/* IAA / App card entries */
.card-entry {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 18px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.card-entry-body { flex: 1; min-width: 0; }
.card-entry-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
}
.card-entry-meta {
  font-size: 11px;
  color: var(--text-dim);
  font-family: monospace;
  margin-bottom: 4px;
}
.card-entry-notes {
  font-size: 13px;
  color: var(--text-muted);
  white-space: pre-wrap;
}

/* ──────────────────────────────────────────────────
   MODAL
   ────────────────────────────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}
.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.modal {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  width: 340px;
  max-width: calc(100vw - 32px);
  transform: translateY(12px) scale(0.97);
  transition: transform 0.2s ease;
}
.modal-overlay.open .modal { transform: translateY(0) scale(1); }
.modal h2 {
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}
.modal-subtitle {
  color: var(--text-muted);
  font-size: 13px;
  margin-bottom: 20px;
}
.modal-input-wrap {
  position: relative;
  margin-bottom: 16px;
}
.modal-input {
  width: 100%;
  background: var(--surface2);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  color: var(--text);
  padding: 10px 40px 10px 14px;
  font-size: 14px;
  font-family: var(--font);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.modal-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
}
.modal-toggle-pw {
  position: absolute;
  right: 10px; top: 50%;
  transform: translateY(-50%);
  background: none; border: none;
  color: var(--text-dim); cursor: pointer;
  padding: 4px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 4px;
  transition: color var(--transition);
}
.modal-toggle-pw:hover { color: var(--text-muted); }
.modal-toggle-pw .material-symbols-rounded { font-size: 18px; }
.modal-error {
  font-size: 12px;
  color: var(--danger);
  margin-bottom: 12px;
  min-height: 18px;
}
.modal-btn {
  width: 100%;
  padding: 11px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 700;
  font-family: var(--font);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 7px;
  transition: background var(--transition);
}
.modal-btn .material-symbols-rounded { font-size: 18px; }
.modal-btn:hover { background: var(--accent-dim); }
.modal-btn:disabled { opacity: 0.5; cursor: not-allowed; }

/* Logo / title in modal */
.modal-logo {
  width: 44px; height: 44px;
  background: var(--accent-glow);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.modal-logo .material-symbols-rounded {
  font-size: 24px;
  color: var(--accent);
  font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

/* ──────────────────────────────────────────────────
   TOAST
   ────────────────────────────────────────────────── */
#toast-container {
  position: fixed;
  bottom: 20px; right: 20px;
  display: flex;
  flex-direction: column-reverse;
  gap: 8px;
  z-index: 9999;
  pointer-events: none;
}
.toast {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 10px 16px;
  font-size: 13px;
  color: var(--text);
  max-width: 300px;
  opacity: 0;
  transform: translateY(10px);
  animation: toastIn 0.22s ease forwards, toastOut 0.22s ease 2.8s forwards;
}
.toast.success { border-color: var(--success); color: var(--success); }
.toast.error   { border-color: var(--danger);  color: var(--danger);  }
@keyframes toastIn  { to { opacity: 1; transform: translateY(0); } }
@keyframes toastOut { to { opacity: 0; transform: translateY(-6px); } }

/* ──────────────────────────────────────────────────
   LOADING SPINNER
   ────────────────────────────────────────────────── */
.spinner {
  width: 20px; height: 20px;
  border: 2px solid var(--border);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
  display: inline-block;
}
@keyframes spin { to { transform: rotate(360deg); } }
.loading-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  z-index: 10;
}
