/* =====================================================
   Supabase Studio — color palette real
   ===================================================== */
:root {
  /* Backgrounds (oscuros neutros, NO azules) */
  --background-200: #1c1c1c;     /* page background */
  --background-100: #171717;     /* darker panel/sidebar */
  --background-300: #202020;     /* card / input bg */
  --background-400: #2a2a2a;     /* hover bg */
  --background-overlay: rgba(0, 0, 0, 0.6);

  /* Borders */
  --border-default: #2e2e2e;
  --border-strong: #404040;
  --border-overlay: rgba(255, 255, 255, 0.1);

  /* Foreground / text */
  --foreground-default: #ededed;
  --foreground-muted: #a1a1a1;
  --foreground-subtle: #737373;
  --foreground-light: #525252;

  /* Brand */
  --brand-default: #3ECF8E;
  --brand-hover: #34b87a;
  --brand-300: #2a8c5e;
  --brand-pressed: #287d54;

  /* Semantic */
  --destructive: #e54d4d;
  --destructive-bg: rgba(229, 77, 77, 0.1);
  --warning: #f59e0b;
  --warning-bg: rgba(245, 158, 11, 0.1);

  /* Sizing */
  --radius-sm: 4px;
  --radius-md: 6px;
  --radius-lg: 8px;
}

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

html, body {
  font-family: 'Inter', 'Custom Font', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: var(--foreground-default);
  background: var(--background-200);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Inter via Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, select, textarea { font-family: inherit; font-size: inherit; }

.view { min-height: 100vh; animation: fadeIn 0.2s ease-out; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* =====================================================
   LOGIN
   ===================================================== */
.login-grid {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 1024px) {
  .login-grid { grid-template-columns: 1fr; }
  .login-right { display: none !important; }
}

.login-left {
  display: flex;
  flex-direction: column;
  padding: 32px 48px;
  background: var(--background-200);
}

.login-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.brand-logo { width: 32px; height: 32px; display: block; }
.brand-name {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--foreground-default);
}

.docs-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border: 1px solid var(--border-default);
  border-radius: var(--radius-md);
  font-size: 13px;
  color: var(--foreground-muted);
  background: var(--background-300);
  transition: all 0.15s;
}
.docs-link:hover { color: var(--foreground-default); border-color: var(--border-strong); }

.login-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 360px;
  width: 100%;
  margin: 0 auto;
  padding: 64px 0;
}

.login-title {
  font-size: 32px;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  color: var(--foreground-default);
}

.login-subtitle {
  font-size: 14px;
  color: var(--foreground-muted);
  margin-bottom: 36px;
}

.login-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-field-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.form-field label,
.checkbox-label {
  font-size: 13px;
  font-weight: 400;
  color: var(--foreground-default);
}

.form-field-link {
  font-size: 12px;
  color: var(--foreground-muted);
  transition: color 0.15s;
}
.form-field-link:hover { color: var(--foreground-default); }

.form-field input[type="email"],
.form-field input[type="password"],
.form-field input[type="text"],
.form-field input[type="number"],
.form-field select {
  width: 100%;
  padding: 8px 12px;
  background: var(--background-300);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-md);
  color: var(--foreground-default);
  font-size: 14px;
  transition: border-color 0.15s, background 0.15s;
}
.form-field input:focus,
.form-field select:focus {
  outline: none;
  border-color: var(--foreground-light);
  background: var(--background-200);
}
.form-field input::placeholder { color: var(--foreground-light); }

.form-hint {
  font-size: 12px;
  color: var(--foreground-subtle);
  margin-top: 2px;
}

.password-wrapper {
  position: relative;
}
.password-wrapper input { padding-right: 36px; }
.password-toggle {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  padding: 4px;
  color: var(--foreground-subtle);
  border-radius: var(--radius-sm);
  transition: color 0.15s;
}
.password-toggle:hover { color: var(--foreground-default); }

.login-error {
  padding: 8px 12px;
  background: var(--destructive-bg);
  border: 1px solid rgba(229, 77, 77, 0.3);
  border-radius: var(--radius-md);
  color: var(--destructive);
  font-size: 13px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px 14px;
  border: 1px solid transparent;
  border-radius: var(--radius-md);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.15s;
  white-space: nowrap;
}
.btn-block { width: 100%; padding: 9px 14px; }
.btn-primary {
  background: var(--brand-default);
  color: #002419;
}
.btn-primary:hover:not(:disabled) { background: var(--brand-hover); }
.btn-primary:disabled { opacity: 0.5; cursor: not-allowed; }
.btn-ghost {
  background: transparent;
  color: var(--foreground-muted);
  border-color: var(--border-default);
}
.btn-ghost:hover { background: var(--background-300); color: var(--foreground-default); }
.btn-danger {
  background: #e54d4d;
  color: #fff;
}
.btn-danger:hover:not(:disabled) { background: #c93c3c; }
.btn-danger:disabled { opacity: 0.5; cursor: not-allowed; }
.project-delete-btn { color: #e54d4d; }
.project-delete-btn:hover { color: #ff7070; }

.spinner {
  display: inline-block;
  width: 14px;
  height: 14px;
  border: 2px solid rgba(0,0,0,0.2);
  border-top-color: rgba(0,0,0,0.6);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.login-footer-text {
  margin-top: 24px;
  font-size: 13px;
  text-align: center;
  color: var(--foreground-muted);
}
.login-footer-text a {
  color: var(--foreground-default);
  text-decoration: underline;
  text-decoration-color: var(--border-strong);
  text-underline-offset: 3px;
}
.login-footer-text a:hover { text-decoration-color: var(--foreground-muted); }

.login-footer {
  font-size: 12px;
  color: var(--foreground-subtle);
  text-align: left;
}

/* Right testimonial */
.login-right {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--background-100);
  border-left: 1px solid var(--border-default);
  padding: 48px;
}

.login-quote {
  max-width: 480px;
  color: var(--foreground-default);
}
.quote-mark {
  color: var(--foreground-light);
  margin-bottom: 24px;
}
.quote-text {
  font-size: 22px;
  line-height: 1.5;
  font-weight: 400;
  letter-spacing: -0.01em;
  margin-bottom: 28px;
  color: var(--foreground-default);
}
.quote-author {
  display: flex;
  align-items: center;
  gap: 10px;
}
.quote-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f59e0b, #dc2626);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  font-size: 14px;
}
.quote-author-name {
  font-size: 13px;
  color: var(--foreground-default);
  font-weight: 500;
}
.quote-author-handle {
  font-size: 12px;
  color: var(--foreground-muted);
}

/* =====================================================
   DASHBOARD
   ===================================================== */
.topbar {
  height: 48px;
  border-bottom: 1px solid var(--border-default);
  background: var(--background-100);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  position: sticky;
  top: 0;
  z-index: 50;
}
.topbar-left, .topbar-right {
  display: flex;
  align-items: center;
  gap: 12px;
}
.topbar-right { position: relative; }

.org-switcher { position: relative; }
.org-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 8px;
  border-radius: var(--radius-md);
  color: var(--foreground-default);
  font-size: 13px;
  font-weight: 400;
  transition: background 0.15s;
}
.org-btn:hover { background: var(--background-300); }

.user-menu {
  display: flex;
  align-items: center;
  padding: 0;
  border-radius: 50%;
}
.user-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, #6366f1, #ec4899);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.user-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  min-width: 220px;
  background: var(--background-200);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-md);
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  padding: 4px;
  z-index: 100;
}
.user-dropdown-header {
  padding: 8px 10px 10px;
}
.user-dropdown-email {
  font-size: 12px;
  color: var(--foreground-muted);
  word-break: break-all;
}
.user-dropdown-divider {
  height: 1px;
  background: var(--border-default);
  margin: 2px 0;
}
.user-dropdown-item {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 8px 10px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  color: var(--foreground-default);
  transition: background 0.15s;
  text-align: left;
}
.user-dropdown-item:hover { background: var(--background-300); }

.back-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 8px;
  border-radius: var(--radius-md);
  color: var(--foreground-muted);
  font-size: 13px;
  transition: all 0.15s;
}
.back-btn:hover { color: var(--foreground-default); background: var(--background-300); }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 24px;
}
.container-narrow { max-width: 720px; }

/* Tabs del dashboard */
.dash-tabs {
  display: flex;
  gap: 2px;
  border-bottom: 1px solid var(--border);
  margin: -8px 0 28px;
}
.dash-tab {
  background: transparent;
  border: none;
  color: var(--text-secondary);
  font-size: 13px;
  font-weight: 500;
  padding: 10px 16px;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: color 0.12s, border-color 0.12s;
}
.dash-tab:hover { color: var(--text-primary); }
.dash-tab.active {
  color: var(--text-primary);
  border-bottom-color: var(--brand);
}

.users-grid {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}
.user-row {
  display: grid;
  grid-template-columns: 36px 1fr 200px 80px 80px;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--bg-card);
  font-size: 13px;
}
.user-row .user-row-avatar {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--bg-input);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 600;
  color: var(--text-primary);
}
.user-row .user-row-email { color: var(--text-primary); font-weight: 500; }
.user-row .user-row-meta { color: var(--text-secondary); font-size: 11px; }
.user-row .user-row-badge {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 2px 8px; border-radius: 4px;
  background: rgba(62, 207, 142, 0.1);
  color: var(--brand);
  font-size: 11px; font-weight: 500;
}
.user-row .user-row-actions {
  display: flex; gap: 4px;
}
.user-row .icon-btn {
  background: transparent; border: none; color: var(--text-secondary);
  cursor: pointer; padding: 4px; border-radius: 4px;
}
.user-row .icon-btn:hover { background: var(--bg-input); color: var(--text-primary); }
.user-row .icon-btn.danger:hover { background: rgba(229, 77, 77, 0.15); color: #e54d4d; }
.users-loading { padding: 24px; text-align: center; color: var(--text-secondary); font-size: 13px; }

/* API panel en project card */
.project-api {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}
.project-api-toggle {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: transparent;
  border: none;
  color: var(--text-secondary);
  font-size: 11px;
  font-weight: 500;
  cursor: pointer;
  padding: 4px 0;
  font-family: inherit;
}
.project-api-toggle:hover { color: var(--text-primary); }
.project-api-panel {
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.api-row {
  display: grid;
  grid-template-columns: 70px 1fr auto;
  align-items: center;
  gap: 8px;
  font-size: 11px;
}
.api-row label {
  color: var(--text-secondary);
  font-weight: 500;
}
.api-row code {
  background: var(--bg-input);
  color: var(--text-primary);
  padding: 4px 6px;
  border-radius: 4px;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 10px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.api-row .copy-btn {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-secondary);
  padding: 2px 8px;
  font-size: 10px;
  border-radius: 4px;
  cursor: pointer;
  font-family: inherit;
  text-transform: lowercase;
  letter-spacing: 0.05em;
}
.api-row .copy-btn:hover { background: var(--bg-input); color: var(--text-primary); }
.api-row .secret-btn {
  background: rgba(229, 77, 77, 0.08);
  border: 1px solid rgba(229, 77, 77, 0.3);
  color: #e54d4d;
}
.api-row .secret-btn:hover { background: rgba(229, 77, 77, 0.15); }
.api-section-divider {
  font-size: 10px;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 8px 0 4px;
  padding: 4px 0;
  border-top: 1px solid var(--border);
  font-weight: 600;
}
.snippet-box {
  background: var(--bg-input);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 10px;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11px;
  white-space: pre;
  overflow-x: auto;
  margin-top: 6px;
  position: relative;
}
.snippet-box pre { margin: 0; color: var(--text-primary); }
.snippet-box .copy-btn {
  position: absolute;
  top: 6px;
  right: 6px;
}

/* Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  animation: modal-fade 0.15s ease-out;
}
.modal-overlay[hidden] { display: none !important; }
@keyframes modal-fade { from { opacity: 0; } to { opacity: 1; } }
.modal {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  width: min(560px, 90vw);
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  animation: modal-slide 0.18s ease-out;
}
@keyframes modal-slide { from { transform: translateY(8px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
}
.modal-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0;
}
.modal-close {
  background: transparent;
  border: none;
  color: var(--text-secondary);
  cursor: pointer;
  padding: 4px;
  border-radius: 4px;
}
.modal-close:hover { background: var(--bg-input); color: var(--text-primary); }
.modal-body {
  padding: 20px;
  overflow-y: auto;
  font-size: 13px;
  color: var(--text-primary);
  line-height: 1.5;
}
.modal-body p { margin: 0 0 12px; }
.modal-body .modal-input {
  width: 100%;
  padding: 8px 10px;
  background: var(--bg-input);
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--text-primary);
  font-size: 13px;
  font-family: inherit;
  margin-top: 4px;
}
.modal-body .modal-input:focus { outline: none; border-color: var(--brand); }
.modal-body label { display: block; margin-top: 12px; color: var(--text-secondary); font-size: 11px; font-weight: 500; }
.modal-footer {
  padding: 12px 20px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}
.modal-footer .btn { padding: 6px 14px; font-size: 12px; }

.page-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 28px;
}
.page-title {
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}
.page-subtitle {
  font-size: 13px;
  color: var(--foreground-muted);
}

/* Project cards */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 16px;
}

.project-card {
  background: var(--background-300);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  padding: 16px;
  transition: border-color 0.15s, background 0.15s;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.project-card:hover {
  border-color: var(--border-strong);
  background: var(--background-400);
}
.project-card[data-status="coming-soon"] {
  opacity: 0.6;
  cursor: not-allowed;
}
.project-card[data-status="coming-soon"]:hover {
  border-color: var(--border-default);
  background: var(--background-300);
}

.project-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.project-icon {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  font-size: 14px;
  background: linear-gradient(135deg, var(--brand-default), var(--brand-300));
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  color: var(--foreground-muted);
  font-weight: 500;
  padding: 2px 6px;
  border-radius: 10px;
  background: var(--background-200);
  border: 1px solid var(--border-default);
}
.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
}
.status-dot.online { background: var(--brand-default); box-shadow: 0 0 6px var(--brand-default); }
.status-dot.offline { background: var(--foreground-light); }
.status-dot.checking { background: var(--warning); animation: pulse 1.5s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }

.status-pill.coming-soon { background: var(--warning-bg); color: var(--warning); border-color: rgba(245,158,11,0.3); }

.project-name {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--foreground-default);
}
.project-desc {
  font-size: 12px;
  color: var(--foreground-muted);
  line-height: 1.5;
}

.project-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding-top: 12px;
  border-top: 1px solid var(--border-default);
}
.project-meta-item {
  font-size: 11px;
}
.project-meta-label {
  color: var(--foreground-subtle);
  margin-bottom: 1px;
  text-transform: uppercase;
  font-size: 10px;
  letter-spacing: 0.04em;
}
.project-meta-value {
  color: var(--foreground-default);
}

/* New project — empty state card */
.new-project-card {
  background: transparent;
  border: 1px dashed var(--border-default);
  border-radius: var(--radius-lg);
  padding: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 200px;
  cursor: pointer;
  color: var(--foreground-muted);
  transition: all 0.15s;
}
.new-project-card:hover {
  border-color: var(--brand-default);
  background: rgba(62, 207, 142, 0.04);
  color: var(--foreground-default);
}
.new-project-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--background-300);
  border: 1px solid var(--border-default);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  color: var(--foreground-muted);
  transition: all 0.15s;
}
.new-project-card:hover .new-project-icon {
  border-color: var(--brand-default);
  color: var(--brand-default);
}

/* =====================================================
   NEW PROJECT FORM
   ===================================================== */
.form-card {
  background: var(--background-300);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.form-section {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.form-section-title {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--foreground-muted);
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border-default);
}

.checkbox-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
.checkbox-label input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--brand-default);
  cursor: pointer;
}

.badge {
  display: inline-block;
  padding: 1px 6px;
  border-radius: 10px;
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background: var(--background-200);
  color: var(--foreground-muted);
  border: 1px solid var(--border-default);
  margin-left: 4px;
}
.badge-warn {
  background: var(--warning-bg);
  color: var(--warning);
  border-color: rgba(245, 158, 11, 0.3);
}

.form-summary {
  background: var(--background-200);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-md);
  padding: 12px 14px;
}
.form-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
}
.form-summary-cost {
  color: var(--brand-default);
  font-weight: 600;
}
.form-summary-note {
  font-size: 11px;
  color: var(--foreground-subtle);
  margin-top: 4px;
}

.form-actions {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}

.warning-card {
  margin-top: 20px;
  padding: 12px 14px;
  background: var(--warning-bg);
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-radius: var(--radius-md);
  font-size: 12px;
  color: var(--foreground-default);
  line-height: 1.6;
}
.warning-card strong { color: var(--warning); }

/* Scrollbar */
::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: var(--background-200); }
::-webkit-scrollbar-thumb { background: var(--background-400); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--border-strong); }
