/* ============================================================================
   AkariAI - Pages版 UI スタイルシート
   サイドバーレイアウト + モバイル対応
   ============================================================================ */

/* ---------- CSS Variables ---------- */
:root {
  --brand-primary: #f59e0b;
  --brand-secondary: #3b82f6;
  --brand-light: #fef3c7;
  --text-primary: #1e293b;
  --text-secondary: #64748b;
  --text-tertiary: #94a3b8;
  --border-color: #e2e8f0;
  --bg-primary: #ffffff;
  --bg-secondary: #f8fafc;
  --bg-page: #f1f5f9;
  --danger: #ef4444;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 24px rgba(0,0,0,0.12);
  --sidebar-width: 240px;
  --bottom-nav-height: 64px;
}

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

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Hiragino Sans', 'Noto Sans JP', sans-serif;
  color: var(--text-primary);
  background: var(--bg-page);
  line-height: 1.5;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

#app {
  display: flex;
  min-height: 100vh;
}

/* ============================================================================
   Sidebar (Desktop)
   ============================================================================ */
.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: var(--sidebar-width);
  height: 100vh;
  background: var(--bg-primary);
  border-right: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  padding: 1.25rem 0.75rem;
  z-index: 100;
  overflow-y: auto;
}

.sidebar-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  margin-bottom: 1.5rem;
  cursor: pointer;
}

.nav-menu {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.nav-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.625rem 0.75rem;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: all 0.15s ease;
  cursor: pointer;
}

.nav-item:hover {
  background: var(--bg-secondary);
  color: var(--text-primary);
}

.nav-item.active {
  background: var(--brand-light);
  color: var(--brand-primary);
  font-weight: 600;
}

.nav-item .material-symbols-outlined {
  font-size: 1.25rem;
}

.nav-spacer {
  flex-grow: 1;
}

.nav-menu-bottom {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  border-top: 1px solid var(--border-color);
  padding-top: 0.75rem;
  margin-top: 0.75rem;
}

/* ============================================================================
   Main Content
   ============================================================================ */
.main-content {
  margin-left: var(--sidebar-width);
  flex: 1;
  min-height: 100vh;
  background: var(--bg-page);
}

.view-container {
  max-width: 960px;
  margin: 0 auto;
  padding: 2rem 2rem 4rem;
}

/* ============================================================================
   Bottom Navigation (Mobile)
   ============================================================================ */
.bottom-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: var(--bottom-nav-height);
  background: var(--bg-primary);
  border-top: 1px solid var(--border-color);
  z-index: 100;
  justify-content: space-around;
  align-items: center;
  padding: 0 0.5rem;
}

.bottom-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.125rem;
  padding: 0.375rem 0.5rem;
  border-radius: var(--radius-sm);
  font-size: 0.625rem;
  font-weight: 500;
  color: var(--text-tertiary);
  transition: color 0.15s ease;
  cursor: pointer;
  min-width: 48px;
}

.bottom-nav-item .material-symbols-outlined {
  font-size: 1.375rem;
}

.bottom-nav-item.active {
  color: var(--brand-primary);
  font-weight: 600;
}

/* ============================================================================
   Home Page
   ============================================================================ */
.welcome-header h1 {
  line-height: 1.35;
}

.input-container {
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 1rem;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.2s;
}

.input-container:focus-within {
  border-color: var(--brand-primary);
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.1);
}

.main-textarea {
  width: 100%;
  min-height: 80px;
  border: none;
  outline: none;
  resize: none;
  font-size: 1rem;
  color: var(--text-primary);
  background: transparent;
  line-height: 1.5;
}

.main-textarea::placeholder {
  color: var(--text-tertiary);
}

.input-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 0.5rem;
}

.action-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: transparent;
  color: var(--text-secondary);
  transition: background 0.15s, color 0.15s;
}

.action-btn:hover {
  background: var(--bg-secondary);
  color: var(--text-primary);
}

.send-btn {
  background: var(--brand-primary);
  color: white;
}

.send-btn:hover {
  background: #d97706;
  color: white;
}

/* Quick Replies */
.quick-replies {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.quick-reply-pill {
  padding: 0.5rem 1rem;
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 999px;
  font-size: 0.875rem;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.15s;
  white-space: nowrap;
}

.quick-reply-pill:hover {
  border-color: var(--brand-primary);
  color: var(--brand-primary);
  background: var(--brand-light);
}

/* Shortcut Grid */
.shortcut-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  gap: 0.75rem;
  margin-top: 2rem;
}

.shortcut-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1.25rem 0.5rem;
  background: var(--bg-primary);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  cursor: pointer;
  transition: all 0.15s;
}

.shortcut-item:hover {
  border-color: var(--brand-primary);
  box-shadow: var(--shadow-sm);
  transform: translateY(-1px);
}

.shortcut-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--brand-light);
  display: flex;
  align-items: center;
  justify-content: center;
}

.shortcut-icon .material-symbols-outlined {
  font-size: 1.375rem;
  color: var(--brand-primary);
}

.shortcut-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-align: center;
}

/* Dashboard Cards */
.dash-card {
  background: var(--bg-primary);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

.dash-label {
  font-size: 0.8rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.dash-value {
  font-size: 1.75rem;
  font-weight: 700;
  margin: 0.25rem 0;
}

.pos-trend {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  color: #16a34a;
  font-size: 0.8rem;
  font-weight: 500;
}

.neg-trend {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  color: var(--danger);
  font-size: 0.8rem;
  font-weight: 500;
}

.pos-trend .material-symbols-outlined,
.neg-trend .material-symbols-outlined {
  font-size: 1rem;
}

/* Progress Bar */
.progress-bar-bg {
  width: 100%;
  height: 8px;
  background: var(--bg-secondary);
  border-radius: 999px;
  overflow: hidden;
}

.progress-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--brand-primary), #fbbf24);
  border-radius: 999px;
  transition: width 0.5s ease;
}

/* Checklist */
.checklist-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--bg-secondary);
}

.checklist-item:last-child {
  border-bottom: none;
}

/* Tags */
.tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.2rem 0.5rem;
  border-radius: 6px;
  background: var(--bg-secondary);
  color: var(--text-secondary);
}

.tag.highlight {
  background: var(--brand-light);
  color: #d97706;
}

/* Quick Reply Button (chat-qr) */
.chat-qr {
  display: inline-flex;
  align-items: center;
  padding: 0.375rem 0.875rem;
  border: 1px solid var(--border-color);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-secondary);
  background: var(--bg-primary);
  cursor: pointer;
  transition: all 0.15s;
  white-space: nowrap;
}

.chat-qr:hover {
  border-color: var(--brand-primary);
  color: var(--brand-primary);
}

/* Footer */
.footer-terms {
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-tertiary);
  line-height: 1.6;
}

.footer-terms a {
  color: var(--text-secondary);
  text-decoration: underline;
}

/* ============================================================================
   Chat Page
   ============================================================================ */
.chat-container {
  display: flex;
  flex-direction: column;
  height: calc(100vh - 0px);
  background: var(--bg-page);
}

/* ---------- State Bar ---------- */
.state-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 0.75rem 1.5rem;
  background: var(--bg-primary);
  border-bottom: 1px solid var(--border-color);
  flex-shrink: 0;
}
.state-step {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  opacity: 0.4;
  transition: opacity 0.3s;
}
.state-step.active {
  opacity: 1;
}
.state-step.done {
  opacity: 0.7;
}
.state-step-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-secondary);
  color: var(--text-secondary);
  font-size: 0.875rem;
}
.state-step-icon .material-symbols-outlined {
  font-size: 1rem;
}
.state-step.active .state-step-icon {
  background: var(--brand-primary);
  color: white;
}
.state-step.done .state-step-icon {
  background: #d1fae5;
  color: #059669;
}
.state-step-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-secondary);
}
.state-step.active .state-step-label {
  color: var(--brand-primary);
}
.state-step-line {
  width: 2rem;
  height: 2px;
  background: var(--border-color);
  margin: 0 0.25rem;
  transition: background 0.3s;
}
.state-step-line.done {
  background: #059669;
}

.chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.msg {
  display: flex;
  gap: 0.75rem;
  max-width: 85%;
  animation: msgFadeIn 0.3s ease;
}

@keyframes msgFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.msg-ai {
  align-self: flex-start;
}

.msg-user {
  align-self: flex-end;
  flex-direction: row-reverse;
}

.msg-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.msg-ai .msg-avatar {
  background: var(--brand-light);
  color: var(--brand-primary);
}

.msg-user .msg-avatar {
  background: var(--bg-secondary);
  color: var(--text-secondary);
}

.msg-avatar .material-symbols-outlined {
  font-size: 1.125rem;
}

.msg-bubble {
  padding: 0.875rem 1.125rem;
  border-radius: var(--radius-lg);
  font-size: 0.9375rem;
  line-height: 1.6;
  word-break: break-word;
}

.msg-ai .msg-bubble {
  background: var(--bg-primary);
  color: var(--text-primary);
  border: 1px solid var(--border-color);
  border-top-left-radius: 4px;
}

.msg-user .msg-bubble {
  background: var(--brand-primary);
  color: white;
  border-top-right-radius: 4px;
}

.chat-seminar-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0.75rem;
  padding: 0.75rem;
  background: var(--brand-light);
  border-radius: var(--radius-md);
  border: 1px solid #fde68a;
}

.chat-seminar-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: var(--brand-primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.chat-input-wrapper {
  padding: 0.75rem 1rem 1rem;
  background: var(--bg-page);
  border-top: 1px solid var(--border-color);
}

/* ============================================================================
   Diagnosis Page
   ============================================================================ */
.diag-card {
  background: var(--bg-primary);
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  margin-top: 1rem;
}

.diag-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.diag-btn {
  padding: 1rem;
  border: 2px solid var(--border-color);
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  background: var(--bg-primary);
  transition: all 0.15s;
  cursor: pointer;
}

.diag-btn:hover {
  border-color: var(--brand-primary);
  color: var(--brand-primary);
  background: var(--brand-light);
}

.diag-btn.selected {
  border-color: var(--brand-primary);
  color: white;
  background: var(--brand-primary);
}

/* ============================================================================
   Report Page
   ============================================================================ */
.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.chart-container {
  background: var(--bg-primary);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  border: 1px solid var(--border-color);
  margin-top: 1.5rem;
}

.bar-chart-mock {
  display: flex;
  height: 16px;
  border-radius: 999px;
  overflow: hidden;
  margin: 1rem 0;
}

.chart-segment-1 {
  width: 60%;
  background: var(--brand-primary);
}

.chart-segment-2 {
  width: 25%;
  background: var(--brand-secondary);
}

.chart-segment-3 {
  width: 15%;
  background: #94a3b8;
}

.chart-legend {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.legend-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

/* ============================================================================
   Seminar Page
   ============================================================================ */
.seminar-banner {
  background: linear-gradient(135deg, var(--brand-primary) 0%, #d97706 100%);
  color: white;
  border-radius: var(--radius-xl);
  padding: 2rem;
  margin-bottom: 2rem;
}

.seminar-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.seminar-carousel {
  /* optional: horizontal scroll on mobile */
}

.seminar-card {
  background: var(--bg-primary);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.seminar-img {
  height: 140px;
  background: var(--brand-light);
  color: var(--brand-primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.seminar-body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.seminar-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
}

.seminar-title {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
}

.seminar-meta {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.reserve-btn {
  display: block;
  width: 100%;
  padding: 0.75rem;
  background: var(--brand-primary);
  color: white;
  border: none;
  border-radius: var(--radius-md);
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s;
  margin-top: 0.5rem;
}

.reserve-btn:hover {
  background: #d97706;
}

/* ============================================================================
   Article / Learning Page
   ============================================================================ */
.article-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.article-card {
  background: var(--bg-primary);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-color);
  cursor: pointer;
  transition: box-shadow 0.2s, transform 0.2s;
}

.article-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.article-img {
  height: 140px;
  background: var(--brand-light);
  color: var(--brand-primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.article-content {
  padding: 1rem;
}

.article-tag {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--brand-primary);
  margin-bottom: 0.375rem;
  text-transform: uppercase;
}

.article-title {
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 0.5rem;
}

.article-read-time {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.75rem;
  color: var(--text-tertiary);
}

/* ============================================================================
   Settings / Notifications
   ============================================================================ */
.setting-group {
  margin-bottom: 2rem;
}

.setting-header {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-tertiary);
  margin-bottom: 0.75rem;
}

.setting-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  border-bottom: 1px solid var(--bg-secondary);
}

.setting-item:last-child {
  border-bottom: none;
}

.setting-info {
  flex: 1;
}

.setting-title {
  font-size: 0.9375rem;
  font-weight: 600;
  margin-bottom: 0.125rem;
}

.setting-desc {
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

/* Toggle Switch */
.toggle-switch {
  position: relative;
  width: 48px;
  height: 28px;
  border-radius: 999px;
  background: var(--border-color);
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.2s;
}

.toggle-switch::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: white;
  box-shadow: 0 1px 3px rgba(0,0,0,0.15);
  transition: transform 0.2s;
}

.toggle-switch.active {
  background: var(--brand-primary);
}

.toggle-switch.active::after {
  transform: translateX(20px);
}

/* Buttons */
.btn-social {
  font-size: 0.9375rem;
}

.btn-danger-outline {
  display: block;
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  transition: all 0.15s;
}

.btn-primary {
  display: block;
  width: 100%;
  padding: 0.75rem;
  background: var(--brand-primary);
  color: white;
  border: none;
  border-radius: var(--radius-md);
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s;
}

.btn-primary:hover {
  background: #d97706;
}

/* ============================================================================
   Modal
   ============================================================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 1rem;
  animation: fadeIn 0.2s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.modal-content {
  background: var(--bg-primary);
  border-radius: var(--radius-xl);
  padding: 2rem;
  max-width: 420px;
  width: 100%;
  position: relative;
  box-shadow: var(--shadow-lg);
  animation: slideUp 0.3s ease;
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-secondary);
  color: var(--text-secondary);
}

.modal-close:hover {
  background: var(--border-color);
}

/* ============================================================================
   Rich Card (Seminar suggestion in chat)
   ============================================================================ */
.rich-card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  overflow: hidden;
  background: var(--bg-primary);
}

.rich-card-header {
  padding: 0.75rem 1rem;
}

.rich-card-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
}

.rich-card-body {
  padding: 1rem;
}

.rich-card-action {
  padding: 0 1rem 1rem;
}

/* ============================================================================
   Responsive (Mobile)
   ============================================================================ */
@media (max-width: 768px) {
  .sidebar {
    display: none;
  }

  .main-content {
    margin-left: 0;
    padding-bottom: var(--bottom-nav-height);
  }

  .bottom-nav {
    display: flex;
  }

  .view-container {
    padding: 1.25rem 1rem 2rem;
  }

  .chat-container {
    height: calc(100vh - var(--bottom-nav-height));
  }

  .shortcut-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .dashboard-grid {
    grid-template-columns: 1fr 1fr;
  }

  .diag-options {
    grid-template-columns: 1fr;
  }

  .seminar-list {
    gap: 1rem;
  }

  .article-grid {
    grid-template-columns: 1fr;
  }

  .msg {
    max-width: 90%;
  }
}

@media (max-width: 480px) {
  .shortcut-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
  }

  .shortcut-item {
    padding: 1rem 0.25rem;
  }

  .dashboard-grid {
    grid-template-columns: 1fr;
  }

  .quick-replies {
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 0.25rem;
    -webkit-overflow-scrolling: touch;
  }

  .quick-reply-pill {
    flex-shrink: 0;
  }
}

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

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

::-webkit-scrollbar-thumb {
  background: var(--border-color);
  border-radius: 999px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--text-tertiary);
}

/* ============================================================================
   Utilities
   ============================================================================ */
.hidden {
  display: none !important;
}
