:root {
  --brand: #127a55;
  --brand-dark: #0b5d42;
  --brand-deep: #092f25;
  --brand-soft: #e9f6f0;
  --brand-pale: #f3faf7;
  --blue: #3275dc;
  --blue-soft: #edf4ff;
  --orange: #d97706;
  --orange-soft: #fff7e7;
  --purple: #7656c7;
  --purple-soft: #f2eeff;
  --surface: #ffffff;
  --surface-muted: #f6f8f7;
  --surface-strong: #eef2f0;
  --ink: #16231e;
  --ink-soft: #405149;
  --muted: #748078;
  --line: #e2e8e5;
  --line-strong: #d3dcd7;
  --danger: #b83d49;
  --danger-soft: #fff0f1;
  --warning: #a65d08;
  --warning-soft: #fff5df;
  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;
  --shadow-sm: 0 1px 2px rgba(10, 40, 30, 0.04), 0 6px 18px rgba(10, 40, 30, 0.04);
  --shadow: 0 16px 40px rgba(11, 47, 37, 0.08);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color-scheme: light;
}

* { box-sizing: border-box; }

html {
  min-width: 320px;
  background: var(--surface-muted);
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  background: var(--surface-muted);
  -webkit-font-smoothing: antialiased;
}

body.nav-open { overflow: hidden; }

button, input, select { font: inherit; }

button, input, select, a { -webkit-tap-highlight-color: transparent; }

a {
  color: var(--brand);
  text-decoration: none;
}

svg { display: block; }
.muted { color: var(--muted); }

.app-shell {
  display: grid;
  grid-template-columns: 272px minmax(0, 1fr);
  min-height: 100vh;
}

.sidebar {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  flex-direction: column;
  width: 272px;
  height: 100vh;
  padding: 24px 18px 18px;
  color: #fff;
  background:
    radial-gradient(circle at 18% 7%, rgba(49, 180, 126, 0.22), transparent 30%),
    linear-gradient(180deg, #0c3b2e 0%, #08291f 100%);
  overflow-y: auto;
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 46px;
  padding: 0 8px;
  color: #fff;
}

.brand-mark {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 13px;
  color: #fff;
  background: linear-gradient(145deg, #28a874, #11714f);
  box-shadow: 0 10px 24px rgba(1, 18, 13, 0.25);
}

.brand-mark svg { width: 22px; height: 22px; }

.brand-copy {
  display: grid;
  gap: 1px;
}

.brand-copy strong {
  font-size: 1rem;
  letter-spacing: -0.01em;
}

.brand-copy span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.venue-card {
  display: grid;
  gap: 3px;
  margin: 28px 2px 22px;
  padding: 14px 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
}

.venue-card__label,
.nav-section-title {
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.venue-card strong {
  overflow: hidden;
  color: #fff;
  font-size: 0.9rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.venue-card span:last-child {
  overflow: hidden;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.76rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.nav-section-title {
  display: block;
  padding: 0 12px 8px;
}

.side-nav {
  display: grid;
  gap: 5px;
}

.side-nav a {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 46px;
  padding: 10px 12px;
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.88rem;
  font-weight: 600;
  transition: color 160ms ease, background 160ms ease, transform 160ms ease;
}

.side-nav a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
  transform: translateX(2px);
}

.side-nav a.active {
  color: #fff;
  background: linear-gradient(90deg, rgba(39, 168, 115, 0.34), rgba(39, 168, 115, 0.14));
  box-shadow: inset 3px 0 #42d193;
}

.side-nav a svg { width: 19px; height: 19px; opacity: 0.9; }

.sidebar-footer {
  display: grid;
  gap: 10px;
  margin-top: auto;
  padding-top: 24px;
}

.user-card {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  padding: 11px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.05);
}

.avatar {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  color: #0c4e38;
  background: #bdf0d8;
  font-size: 0.78rem;
  font-weight: 800;
}

.user-card__copy {
  display: grid;
  min-width: 0;
  gap: 2px;
}

.user-card__copy strong,
.user-card__copy span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.user-card__copy strong { color: #fff; font-size: 0.8rem; }
.user-card__copy span { color: rgba(255, 255, 255, 0.52); font-size: 0.7rem; }

.logout-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 40px;
  border-radius: 11px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.78rem;
  font-weight: 600;
  transition: color 160ms ease, background 160ms ease;
}

.logout-link:hover { color: #fff; background: rgba(255, 255, 255, 0.07); }
.logout-link svg { width: 17px; height: 17px; }

.app-content {
  display: flex;
  min-width: 0;
  min-height: 100vh;
  flex-direction: column;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  padding: 14px clamp(20px, 3vw, 40px);
  border-bottom: 1px solid rgba(226, 232, 229, 0.9);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(16px);
}

.topbar-heading { display: grid; gap: 2px; }
.topbar-heading strong { font-size: 0.95rem; letter-spacing: -0.01em; }

.topbar-eyebrow {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.topbar-actions { display: flex; align-items: center; gap: 12px; }

.sync-status {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 11px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
}

.sync-dot {
  position: relative;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #24a66f;
  box-shadow: 0 0 0 4px #e4f7ee;
}

.sync-copy { display: grid; gap: 1px; }

.sync-copy span {
  color: var(--muted);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.sync-copy strong { color: var(--ink-soft); font-size: 0.74rem; font-weight: 650; }

.nav-toggle {
  display: none;
  place-items: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--ink);
  background: var(--surface);
  cursor: pointer;
}

.nav-toggle svg { width: 21px; height: 21px; }

.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 35;
  display: none;
  padding: 0;
  border: 0;
  background: rgba(5, 21, 16, 0.48);
  backdrop-filter: blur(2px);
}

.page {
  width: 100%;
  max-width: 1580px;
  margin: 0 auto;
  padding: 34px clamp(20px, 3vw, 40px) 44px;
}

.page-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 26px;
}

.page-head__copy { min-width: 190px; }

.eyebrow {
  margin: 0 0 8px;
  color: var(--brand);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.page-head h1 {
  margin: 0;
  font-size: clamp(1.7rem, 2.5vw, 2.15rem);
  letter-spacing: -0.045em;
  line-height: 1.1;
}

.page-head p:not(.eyebrow) { margin: 8px 0 0; font-size: 0.9rem; }

.filters {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

label {
  display: grid;
  gap: 6px;
  color: var(--ink-soft);
  font-size: 0.76rem;
  font-weight: 650;
}

input,
select {
  width: 100%;
  min-height: 41px;
  padding: 9px 12px;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  outline: 0;
  color: var(--ink);
  background: #fff;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

input:hover, select:hover { border-color: #bdc9c3; }

input:focus,
select:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(18, 122, 85, 0.11);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 41px;
  padding: 10px 17px;
  border: 0;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 700;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  box-shadow: 0 8px 18px rgba(18, 122, 85, 0.2);
}

.btn-primary:hover { box-shadow: 0 10px 22px rgba(18, 122, 85, 0.28); }

.stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 22px;
}

.stat {
  position: relative;
  min-width: 0;
  padding: 19px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.stat::after {
  position: absolute;
  right: -22px;
  bottom: -30px;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: var(--stat-soft, var(--brand-soft));
  content: "";
  opacity: 0.65;
}

.stat--green { --stat-color: var(--brand); --stat-soft: var(--brand-soft); }
.stat--blue { --stat-color: var(--blue); --stat-soft: var(--blue-soft); }
.stat--orange { --stat-color: var(--orange); --stat-soft: var(--orange-soft); }
.stat--purple { --stat-color: var(--purple); --stat-soft: var(--purple-soft); }

.stat-top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.metric-icon {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 35px;
  height: 35px;
  border-radius: 10px;
  color: var(--stat-color, var(--brand));
  background: var(--stat-soft, var(--brand-soft));
}

.metric-icon svg { width: 18px; height: 18px; }
.stat .label { color: var(--muted); font-size: 0.76rem; font-weight: 650; }

.stat .value {
  position: relative;
  z-index: 1;
  margin-top: 12px;
  overflow: hidden;
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  font-weight: 780;
  letter-spacing: -0.035em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  overflow: auto;
}

.panel + .panel,
.panel + .stats,
.stats + .panel { margin-top: 18px; }

.dashboard-grid .panel + .panel { margin-top: 0; }
.panel-spaced { margin-bottom: 18px; }

.panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-width: max-content;
  padding: 18px 20px 14px;
  border-bottom: 1px solid var(--line);
}

.panel-head__copy { display: grid; gap: 4px; }

.panel-head h2 {
  margin: 0;
  color: var(--ink);
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.panel-head p { margin: 0; color: var(--muted); font-size: 0.76rem; }

.panel-count {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 9px;
  border-radius: 8px;
  color: var(--brand-dark);
  background: var(--brand-soft);
  font-size: 0.72rem;
  font-weight: 750;
  white-space: nowrap;
}

.shift-status-panel { padding: 20px; }
.shift-status-panel .page-head { margin-bottom: 18px; }
.shift-status-panel .stats { margin-bottom: 4px; }

.shift-title {
  margin: 0;
  color: var(--ink);
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

.shift-status-head .panel-head__copy p {
  margin: 0;
}

.shift-status-panel table {
  margin: 18px -20px -20px;
  width: calc(100% + 40px);
}

table { width: 100%; border-collapse: collapse; }

th,
td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  white-space: nowrap;
}

th {
  color: var(--muted);
  background: #fbfcfb;
  font-size: 0.69rem;
  font-weight: 750;
  letter-spacing: 0.065em;
  text-transform: uppercase;
}

td {
  color: var(--ink-soft);
  font-size: 0.82rem;
  font-weight: 520;
}

tbody tr { transition: background 140ms ease; }
tbody tr:hover { background: var(--brand-pale); }
tr:last-child td { border-bottom: 0; }

td strong,
.cell-primary { color: var(--ink); font-weight: 700; }

.cell-money {
  color: var(--ink);
  font-variant-numeric: tabular-nums;
  font-weight: 680;
}

.empty-cell { height: 110px; color: var(--muted); text-align: center; }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 27px;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 0.69rem;
  font-weight: 750;
  white-space: nowrap;
}

.badge::before {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  content: "";
}

.badge-open { color: var(--brand-dark); background: var(--brand-soft); }
.badge-closed { color: #66736c; background: #eef1ef; }

.badge-warn {
  margin-left: 6px;
  color: var(--warning);
  background: var(--warning-soft);
}

.row-multi-close { background: #fffdf8; }
.row-multi-close:hover { background: #fff8e9; }

.alert {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 11px 12px;
  border: 1px solid transparent;
  border-radius: 11px;
  font-size: 0.8rem;
  line-height: 1.45;
}

.alert + .alert { margin-top: 8px; }
.alert-error { border-color: #f6ccd1; color: var(--danger); background: var(--danger-soft); }
.alert-warn { border-color: #f2ddb2; color: var(--warning); background: var(--warning-soft); }

.footer {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  width: 100%;
  max-width: 1580px;
  margin: auto auto 0;
  padding: 18px clamp(20px, 3vw, 40px) 24px;
  color: var(--muted);
  font-size: 0.72rem;
}

/* Authentication */
.auth-page {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 28px;
  background:
    radial-gradient(circle at 15% 15%, rgba(36, 166, 111, 0.16), transparent 32%),
    radial-gradient(circle at 90% 90%, rgba(50, 117, 220, 0.08), transparent 30%),
    #eef4f1;
}

.auth-shell {
  display: grid;
  grid-template-columns: minmax(340px, 0.92fr) minmax(420px, 1.08fr);
  width: min(1020px, 100%);
  min-height: 650px;
  border: 1px solid rgba(16, 71, 53, 0.1);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 30px 80px rgba(9, 47, 37, 0.16);
  overflow: hidden;
}

.auth-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 42px;
  color: #fff;
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.07), transparent 42%),
    linear-gradient(155deg, #0d6749 0%, #082e24 72%);
  overflow: hidden;
}

.auth-visual::before,
.auth-visual::after {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  content: "";
}

.auth-visual::before { right: -140px; bottom: -90px; width: 360px; height: 360px; }
.auth-visual::after { right: -75px; bottom: -25px; width: 230px; height: 230px; }

.auth-brand {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 12px;
}

.auth-brand .brand-mark { width: 44px; height: 44px; }
.auth-brand__copy { display: grid; gap: 1px; }
.auth-brand__copy strong { font-size: 1rem; }

.auth-brand__copy span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.auth-visual__content {
  position: relative;
  z-index: 1;
  margin: auto 0;
}

.auth-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.7rem;
  font-weight: 700;
}

.auth-pill::before {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #70e5ae;
  box-shadow: 0 0 0 4px rgba(112, 229, 174, 0.12);
  content: "";
}

.auth-visual h2 {
  max-width: 380px;
  margin: 0;
  font-size: clamp(2rem, 3.5vw, 3rem);
  letter-spacing: -0.055em;
  line-height: 1.06;
}

.auth-visual__text {
  max-width: 390px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.9rem;
  line-height: 1.7;
}

.auth-features { display: grid; gap: 11px; margin-top: 28px; }

.auth-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.83);
  font-size: 0.79rem;
  font-weight: 600;
}

.auth-feature svg {
  width: 16px;
  height: 16px;
  padding: 3px;
  border-radius: 50%;
  color: #b6f1d2;
  background: rgba(89, 208, 146, 0.14);
}

.auth-visual__foot {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.68rem;
}

.auth-form-side {
  display: grid;
  place-items: center;
  padding: 50px clamp(36px, 6vw, 78px);
  background: #fff;
}

.auth-card { width: min(390px, 100%); }

.auth-mobile-brand {
  display: none;
  align-items: center;
  gap: 10px;
  margin-bottom: 34px;
}

.auth-card .eyebrow { margin-bottom: 10px; }

.auth-card h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.8rem, 3vw, 2.25rem);
  letter-spacing: -0.05em;
}

.auth-card > .muted { margin: 11px 0 0; font-size: 0.86rem; line-height: 1.6; }
.auth-alerts { margin-top: 20px; }

.auth-card form {
  display: grid;
  gap: 16px;
  margin-top: 26px;
}

.input-wrap { position: relative; }

.input-wrap svg {
  position: absolute;
  top: 50%;
  left: 13px;
  width: 18px;
  height: 18px;
  color: #91a099;
  pointer-events: none;
  transform: translateY(-50%);
}

.input-wrap input {
  min-height: 48px;
  padding-left: 42px;
  border-radius: 12px;
  background: #fbfcfb;
}

.auth-card .btn { min-height: 49px; margin-top: 4px; border-radius: 12px; }
.auth-card .btn svg { width: 18px; height: 18px; }

.auth-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin: 20px 0 0;
  color: #8a9790;
  font-size: 0.7rem;
}

.auth-note svg { width: 14px; height: 14px; }

@media (max-width: 1180px) {
  .stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .page-head { align-items: flex-start; flex-direction: column; }
  .filters { width: 100%; }
  .filters label { flex: 1 1 150px; }
}

@media (max-width: 980px) {
  .app-shell { display: block; }

  .sidebar {
    position: fixed;
    left: 0;
    transform: translateX(-105%);
    transition: transform 200ms ease;
  }

  .nav-open .sidebar { transform: translateX(0); }
  .nav-open .nav-overlay { display: block; }
  .nav-toggle { display: grid; }
  .topbar { justify-content: flex-start; gap: 14px; }
  .topbar-actions { margin-left: auto; }
  .auth-shell { grid-template-columns: minmax(300px, 0.8fr) minmax(390px, 1.2fr); }
  .auth-visual { padding: 34px; }
}

@media (max-width: 760px) {
  .topbar { min-height: 68px; }
  .sync-copy { display: none; }

  .sync-status {
    width: 36px;
    height: 36px;
    padding: 0;
    justify-content: center;
  }

  .page { padding-top: 26px; }

  .filters {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .filters label,
  .filters .btn { width: 100%; }
  .dashboard-grid { grid-template-columns: 1fr; }
  .dashboard-grid .panel + .panel { margin-top: 0; }
  .auth-page { padding: 18px; }

  .auth-shell {
    display: block;
    width: min(500px, 100%);
    min-height: auto;
  }

  .auth-visual { display: none; }

  .auth-form-side {
    min-height: 620px;
    padding: 42px 30px;
  }

  .auth-mobile-brand { display: flex; }
  .auth-mobile-brand .brand-mark { width: 40px; height: 40px; }
  .auth-mobile-brand .brand-copy strong { color: var(--ink); }
  .auth-mobile-brand .brand-copy span { color: var(--muted); }
}

@media (max-width: 540px) {
  .sidebar { width: min(300px, 86vw); }
  .topbar-heading { display: none; }
  .stats { grid-template-columns: 1fr; gap: 12px; }
  .filters { grid-template-columns: 1fr; }
  .page-head { margin-bottom: 22px; }
  .panel-head { padding: 16px; }
  th, td { padding: 13px 16px; }
  .footer { flex-direction: column; }
  .auth-page { padding: 0; background: #fff; }

  .auth-shell {
    min-height: 100vh;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .auth-form-side { min-height: 100vh; padding: 36px 24px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
