/* ========================================
   SpamJammer — Interactive / Animated
   Design Style: Dark Navy + Violet Accent
   ======================================== */

:root {
  --bg-primary: #0F172A;
  --bg-secondary: #1E293B;
  --surface-1: #1E293B;
  --surface-2: #334155;
  --surface-3: #475569;
  --border: #334155;
  --border-light: rgba(148, 163, 184, 0.12);
  --accent: #8B5CF6;
  --accent-light: #A78BFA;
  --accent-glow: rgba(139, 92, 246, 0.4);
  --text-primary: #F1F5F9;
  --text-secondary: #CBD5E1;
  --text-muted: #64748B;
  --red: #F87171;
  --orange: #FB923C;
  --yellow: #FBBF24;
  --green: #34D399;
  --blue: #60A5FA;
  --cyan: #22D3EE;
  --violet: #8B5CF6;
  --topnav-h: 64px;
  --sidebar-w: 260px;
  --radius: 12px;
  --radius-sm: 8px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Red Hat Display', sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  min-height: 100vh;
  overflow-x: hidden;
}

/* Particles Canvas */
#particles {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

/* ---- TOP NAV ---- */
.topnav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--topnav-h);
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  z-index: 100;
  transform: translateY(-100%);
  animation: slideDown 0.6s ease forwards;
}

@keyframes slideDown {
  to { transform: translateY(0); }
}

.topnav-left,
.topnav-right {
  display: flex;
  align-items: center;
  gap: 24px;
}

.sidebar-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.sidebar-toggle span {
  width: 22px;
  height: 2px;
  background: var(--text-secondary);
  border-radius: 2px;
  transition: 0.3s;
}

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

.logo-icon {
  animation: logoSpin 1s ease forwards;
}

.logo-ring {
  stroke-dasharray: 88;
  stroke-dashoffset: 88;
  animation: drawRing 1s 0.3s ease forwards;
}

.logo-check {
  stroke-dasharray: 24;
  stroke-dashoffset: 24;
  animation: drawCheck 0.5s 1s ease forwards;
}

@keyframes drawRing {
  to { stroke-dashoffset: 0; }
}

@keyframes drawCheck {
  to { stroke-dashoffset: 0; }
}

.logo-text {
  font-size: 18px;
  font-weight: 500;
  color: var(--text-secondary);
  letter-spacing: -0.5px;
}

.logo-text strong {
  color: var(--text-primary);
  font-weight: 800;
}

.nav-links {
  display: flex;
  gap: 4px;
}

.nav-link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 6px;
  transition: all 0.25s;
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--text-primary);
  background: rgba(139, 92, 246, 0.1);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

.nav-icon-btn {
  position: relative;
  background: none;
  border: 1px solid var(--border-light);
  border-radius: 10px;
  color: var(--text-secondary);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s;
}

.nav-icon-btn:hover {
  background: var(--surface-1);
  color: var(--text-primary);
  border-color: var(--accent);
  transform: translateY(-1px);
}

.notif-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--red);
  color: white;
  font-size: 10px;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: bounceBadge 2s ease infinite;
}

@keyframes bounceBadge {
  0%, 100% { transform: scale(1); }
  10% { transform: scale(1.3); }
  20% { transform: scale(1); }
  30% { transform: scale(1.2); }
  40% { transform: scale(1); }
}

.user-info {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 10px;
  transition: background 0.2s;
}

.user-info:hover {
  background: var(--surface-1);
}

.user-avatar {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--accent), #C084FC);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: white;
}

.user-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
}

/* ---- LAYOUT ---- */
.layout {
  display: flex;
  padding-top: var(--topnav-h);
  min-height: 100vh;
  position: relative;
  z-index: 1;
}

/* ---- SIDEBAR ---- */
.sidebar {
  width: var(--sidebar-w);
  min-height: calc(100vh - var(--topnav-h));
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(10px);
  border-right: 1px solid var(--border-light);
  position: fixed;
  top: var(--topnav-h);
  left: 0;
  bottom: 0;
  overflow-y: auto;
  transform: translateX(-100%);
  animation: slideInSidebar 0.6s 0.3s ease forwards;
  z-index: 50;
}

@keyframes slideInSidebar {
  to { transform: translateX(0); }
}

.sidebar-inner {
  padding: 20px 12px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.sidebar-menu {
  list-style: none;
  flex: 1;
}

.sidebar-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.25s;
  opacity: 0;
  transform: translateX(-20px);
  animation: slideInMenuItem 0.4s ease forwards;
  animation-delay: calc(0.5s + var(--delay) * 0.06s);
  position: relative;
}

@keyframes slideInMenuItem {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.sidebar-item:hover {
  background: rgba(139, 92, 246, 0.08);
  color: var(--text-secondary);
  transform: translateX(4px);
}

.sidebar-item.active {
  background: rgba(139, 92, 246, 0.15);
  color: var(--accent-light);
}

.sidebar-item.active::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 20px;
  background: var(--accent);
  border-radius: 0 3px 3px 0;
}

.sidebar-badge {
  margin-left: auto;
  font-size: 11px;
  font-weight: 700;
  background: var(--surface-2);
  color: var(--text-secondary);
  padding: 2px 8px;
  border-radius: 10px;
}

.sidebar-badge.warn {
  background: rgba(248, 113, 113, 0.15);
  color: var(--red);
}

.sidebar-usage {
  padding: 16px;
  border-top: 1px solid var(--border-light);
  margin-top: auto;
}

.usage-label {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.usage-pct {
  color: var(--accent-light);
  font-weight: 600;
}

.usage-bar {
  height: 6px;
  background: var(--surface-2);
  border-radius: 3px;
  overflow: hidden;
}

.usage-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--accent), #C084FC);
  border-radius: 3px;
  transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.usage-detail {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 6px;
}

/* ---- MAIN ---- */
.main {
  flex: 1;
  margin-left: var(--sidebar-w);
  padding: 28px 32px;
  min-height: calc(100vh - var(--topnav-h));
}

/* ---- PAGE HEADER ---- */
.page-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  flex-wrap: wrap;
  gap: 16px;
}

.page-title {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.5px;
  background: linear-gradient(135deg, var(--text-primary), var(--accent-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-subtitle {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 4px;
}

.header-actions {
  display: flex;
  gap: 10px;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-ghost {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--border);
}

.btn-ghost:hover {
  background: var(--surface-1);
  border-color: var(--accent);
  color: var(--text-primary);
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), #7C3AED);
  color: white;
  box-shadow: 0 4px 15px var(--accent-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px var(--accent-glow);
}

.pulse-glow {
  animation: pulseGlow 3s ease infinite;
}

@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 4px 15px var(--accent-glow); }
  50% { box-shadow: 0 4px 30px var(--accent-glow), 0 0 60px rgba(139, 92, 246, 0.15); }
}

.chip {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-muted);
  padding: 6px 14px;
  border-radius: 20px;
  font-family: inherit;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s;
}

.chip:hover {
  border-color: var(--accent);
  color: var(--text-secondary);
}

.chip.active {
  background: var(--accent);
  border-color: var(--accent);
  color: white;
}

/* ---- STATS ROW ---- */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 28px;
}

.stat-card {
  background: var(--surface-1);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 22px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 0% 0%, rgba(139, 92, 246, 0.06), transparent 60%);
  pointer-events: none;
}

.stat-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.stat-icon.blue { background: rgba(96, 165, 250, 0.15); color: var(--blue); }
.stat-icon.red { background: rgba(248, 113, 113, 0.15); color: var(--red); }
.stat-icon.green { background: rgba(52, 211, 153, 0.15); color: var(--green); }
.stat-icon.violet { background: rgba(139, 92, 246, 0.15); color: var(--violet); }

.stat-label {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
  margin-bottom: 6px;
}

.stat-value {
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-change {
  font-size: 12px;
  font-weight: 600;
}

.stat-change.up { color: var(--green); }
.stat-change.up::before { content: '\2191 '; }
.stat-change.down { color: var(--red); }
.stat-change.down::before { content: '\2193 '; }

/* ---- CARDS ---- */
.card {
  background: var(--surface-1);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 28px;
  position: relative;
  overflow: hidden;
}

.card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 12px;
}

.card-title {
  font-size: 16px;
  font-weight: 700;
}

.card-actions {
  display: flex;
  gap: 6px;
}

.card-link {
  font-size: 13px;
  color: var(--accent-light);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}

.card-link:hover {
  color: var(--accent);
}

/* ---- 3D TILT ---- */
.tilt-card {
  transition: transform 0.4s cubic-bezier(0.03, 0.98, 0.52, 0.99), box-shadow 0.4s;
  transform-style: preserve-3d;
  will-change: transform;
}

.tilt-card:hover {
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 40px rgba(139, 92, 246, 0.08);
}

/* ---- ANIMATION CLASSES ---- */
.anim-fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition-delay: calc(var(--delay, 0) * 0.1s);
}

.anim-fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- CHART ---- */
.chart-container {
  position: relative;
  width: 100%;
}

.activity-svg {
  width: 100%;
  height: auto;
}

.chart-line {
  stroke-dasharray: 1200;
  stroke-dashoffset: 1200;
  transition: stroke-dashoffset 2s ease;
}

.chart-line.animate {
  stroke-dashoffset: 0;
}

.chart-line-spam {
  stroke-dasharray: 1200;
  stroke-dashoffset: 1200;
  transition: stroke-dashoffset 2s 0.5s ease;
}

.chart-line-spam.animate {
  stroke-dashoffset: 0;
}

.chart-area {
  opacity: 0;
  transition: opacity 1s 1s ease;
}

.chart-area.animate {
  opacity: 1;
}

.chart-dot {
  r: 0;
  transition: r 0.4s ease;
  transition-delay: calc(1.5s + var(--dot-delay) * 0.1s);
}

.chart-dot.animate {
  r: 5;
}

/* ---- DATA TABLE ---- */
.table-wrap {
  overflow-x: auto;
}

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

.data-table th {
  text-align: left;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 12px 14px;
  border-bottom: 1px solid var(--border-light);
}

.data-table td {
  padding: 14px;
  border-bottom: 1px solid var(--border-light);
  font-size: 13px;
  color: var(--text-secondary);
}

.data-table tbody tr {
  transition: background 0.2s;
}

.data-table tbody tr:hover {
  background: rgba(139, 92, 246, 0.04);
}

.table-row-anim {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  transition-delay: calc(var(--row) * 0.1s);
}

.table-row-anim.visible {
  opacity: 1;
  transform: translateX(0);
}

.sender-cell {
  display: flex;
  align-items: center;
  gap: 12px;
}

.sender-avatar {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}

.sender-name {
  font-weight: 600;
  color: var(--text-primary);
  font-size: 13px;
}

.sender-sub {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
}

.tag {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.tag.red { background: rgba(248, 113, 113, 0.15); color: var(--red); }
.tag.orange { background: rgba(251, 146, 60, 0.15); color: var(--orange); }
.tag.yellow { background: rgba(251, 191, 36, 0.15); color: var(--yellow); }
.tag.green { background: rgba(52, 211, 153, 0.15); color: var(--green); }

.threat-score {
  font-weight: 700;
  font-size: 14px;
}

.threat-score.high { color: var(--red); }
.threat-score.med { color: var(--yellow); }
.threat-score.low { color: var(--green); }

.status {
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 6px;
  display: inline-block;
}

.status.blocked { background: rgba(248, 113, 113, 0.12); color: var(--red); }
.status.quarantined { background: rgba(251, 191, 36, 0.12); color: var(--yellow); }
.status.released { background: rgba(52, 211, 153, 0.12); color: var(--green); }

/* ---- GRID ---- */
.grid-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-bottom: 28px;
}

.grid-2col > .card {
  margin-bottom: 0;
}

/* ---- DONUT CHART ---- */
.donut-chart-wrap {
  width: 180px;
  margin: 0 auto 20px;
}

.donut-chart {
  width: 100%;
  transform: rotate(-90deg);
}

.donut-seg {
  transition: stroke-dasharray 1.2s cubic-bezier(0.4, 0, 0.2, 1);
  transition-delay: calc(var(--seg-delay) * 0.15s);
}

.categories-content {
  display: flex;
  flex-direction: column;
}

/* ---- CATEGORY BARS ---- */
.category-bars {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cat-bar-item {
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  transition-delay: calc(var(--bar-delay) * 0.12s);
}

.cat-bar-item.visible {
  opacity: 1;
  transform: translateX(0);
}

.cat-bar-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 6px;
}

.cat-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.cat-pct {
  margin-left: auto;
  font-weight: 700;
  font-size: 12px;
  color: var(--text-muted);
}

.cat-bar-track {
  height: 6px;
  background: var(--surface-2);
  border-radius: 3px;
  overflow: hidden;
}

.cat-bar-fill {
  height: 100%;
  width: 0;
  border-radius: 3px;
  transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.cat-bar-fill.animate {
  width: var(--fill-w);
}

/* ---- BLOCKED LIST ---- */
.blocked-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.blocked-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  transition: background 0.2s;
}

.blocked-item:hover {
  background: rgba(139, 92, 246, 0.06);
}

.slide-in-item {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  transition-delay: calc(var(--item) * 0.08s);
}

.slide-in-item.visible {
  opacity: 1;
  transform: translateX(0);
}

.blocked-rank {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--surface-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
  flex-shrink: 0;
}

.blocked-info {
  min-width: 0;
  flex-shrink: 0;
}

.blocked-domain {
  font-size: 13px;
  font-weight: 600;
}

.blocked-count {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 2px;
}

.blocked-bar-wrap {
  flex: 1;
  height: 6px;
  background: var(--surface-2);
  border-radius: 3px;
  overflow: hidden;
}

.blocked-bar {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--accent), var(--red));
  border-radius: 3px;
  transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.blocked-bar.animate {
  width: var(--bw);
}

/* ---- QUICK ACTIONS ---- */
.quick-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.action-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  background: var(--bg-primary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  cursor: pointer;
  text-align: left;
  color: var(--text-primary);
  font-family: inherit;
  transition: all 0.3s;
  opacity: 0;
  transform: scale(0.9);
  animation: popIn 0.5s ease forwards;
  animation-delay: calc(0.8s + var(--qa-delay) * 0.1s);
}

@keyframes popIn {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.action-btn:hover {
  border-color: var(--accent);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2), 0 0 20px rgba(139, 92, 246, 0.1);
}

.action-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.action-icon.red { background: rgba(248, 113, 113, 0.15); color: var(--red); }
.action-icon.green { background: rgba(52, 211, 153, 0.15); color: var(--green); }
.action-icon.violet { background: rgba(139, 92, 246, 0.15); color: var(--violet); }
.action-icon.blue { background: rgba(96, 165, 250, 0.15); color: var(--blue); }
.action-icon.orange { background: rgba(251, 146, 60, 0.15); color: var(--orange); }
.action-icon.cyan { background: rgba(34, 211, 238, 0.15); color: var(--cyan); }

.action-label {
  font-size: 14px;
  font-weight: 700;
}

.action-desc {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1200px) {
  .stats-row {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-2col {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .sidebar {
    transform: translateX(-100%);
    animation: none;
  }

  .sidebar.open {
    transform: translateX(0);
    animation: slideInSidebar 0.3s ease forwards;
  }

  .main {
    margin-left: 0;
    padding: 20px 16px;
  }

  .sidebar-toggle {
    display: flex;
  }

  .nav-links {
    display: none;
  }

  .user-name {
    display: none;
  }

  .quick-actions {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .stats-row {
    grid-template-columns: 1fr;
  }

  .page-title {
    font-size: 22px;
  }

  .stat-value {
    font-size: 24px;
  }

  .topnav {
    padding: 0 12px;
  }

  .topnav-left,
  .topnav-right {
    gap: 10px;
  }
}

/* ---- SCROLLBAR ---- */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: var(--surface-2);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--surface-3);
}
