/* ========================================
   xEllerator - Modern Styles
   ======================================== */

/* CSS Variables */
:root {
  /* The plum family, anchored on the two colours in the logo artwork:
     500 is Momentum Plum (the bar under "xE": accents, hover, progress),
     700 is Leadership Plum (the wordmark: buttons, navigation, headlines).
     The brand guide prints #3D1B4E / #A35AA6 for these, but its own swatches
     and logo files are #562244 / #944872, so the artwork wins. */
  --primary-50: #fbf3f7;
  --primary-100: #f5e3ec;
  --primary-200: #ecc6d9;
  --primary-300: #d99aba;
  --primary-400: #b76c93;
  --primary-500: #944872;
  --primary-600: #75365a;
  --primary-700: #562244;
  --primary-800: #461b37;
  --primary-900: #36142a;

  /* Secondary Colors */
  --blue-400: #60a5fa;
  --blue-500: #3b82f6;
  --blue-600: #2563eb;
  --green-400: #34d399;
  --green-500: #10b981;
  --green-600: #059669;
  --orange-500: #f59e0b;
  --orange-600: #d97706;
  --red-500: #ef4444;

  /* Neutrals — warmed toward the plum so every surface belongs to the brand */
  --gray-50: #f8f4f6;
  --gray-100: #f1eaee;
  --gray-200: #e5dae0;
  --gray-300: #cfc0c8;
  --gray-400: #a2909a;
  --gray-500: #7d6a74;
  --gray-600: #5e4c55;
  --gray-700: #46373e;
  --gray-800: #2f242a;
  --gray-900: #211519;

  /* Semantic */
  --bg-primary: #faf7f8;
  --bg-card: #ffffff;
  --text-primary: var(--gray-900);
  --text-secondary: var(--gray-600);
  --text-muted: var(--gray-400);
  --border-color: #ebe0e6;

  /* Type */
  --font-display: 'Poppins', 'Inter', sans-serif; /* the guide's headline face; Inter for everything else */

  /* Shadows — plum-cast, not black */
  --shadow-sm: 0 1px 2px 0 rgb(62 22 44 / 0.05);
  --shadow: 0 1px 3px 0 rgb(62 22 44 / 0.09), 0 1px 2px -1px rgb(62 22 44 / 0.09);
  --shadow-md: 0 4px 6px -1px rgb(62 22 44 / 0.09), 0 2px 4px -2px rgb(62 22 44 / 0.09);
  --shadow-lg: 0 10px 15px -3px rgb(62 22 44 / 0.09), 0 4px 6px -4px rgb(62 22 44 / 0.09);
  --shadow-xl: 0 20px 25px -5px rgb(62 22 44 / 0.10), 0 8px 10px -6px rgb(62 22 44 / 0.10);

  /* Layout */
  --sidebar-width: 260px;
  --header-height: 70px;
  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 16px;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition: 200ms ease;
  --transition-slow: 300ms ease;
}

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

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.5;
  min-height: 100vh;
}

/* App Container */
.app-container {
  display: flex;
  min-height: 100vh;
}

/* ========================================
   Sidebar
   ======================================== */
.sidebar {
  width: var(--sidebar-width);
  background: linear-gradient(180deg, var(--primary-700) 0%, var(--primary-800) 100%);
  color: white;
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  z-index: 100;
  transition: transform var(--transition-slow);
}

.sidebar-header {
  padding: 24px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

/* The logo is always an image (public/brand/): the guide's Poppins Bold wordmark
   with the Momentum Plum bar under "xE". Reverse on plum, standard on paper.
   Never type the wordmark in a font. */
.brand-logo {
  display: block;
  height: 34px;
  width: auto;
}

/* The brand element (guide p.11): the bar from under "xE" reused as an overline
   above a title. Same proportions as in the logo: 1.13em wide, 0.226em tall. */
.overline::before,
.page-head h1::before,
.welcome-content h1::before {
  content: "";
  display: block;
  width: 1.13em;
  height: 0.226em;
  margin-bottom: 0.34em;
  background: var(--primary-500);
}

.nav-menu {
  flex: 1;
  padding: 16px 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: var(--radius);
  color: white;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all var(--transition);
  position: relative;
}

.nav-item:hover {
  background: rgba(255, 255, 255, 0.1);
  color: white;
}

.nav-item.active {
  background: rgba(255, 255, 255, 0.15);
  color: white;
}

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

.nav-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.badge {
  margin-left: auto;
  background: var(--primary-500);
  color: white;
  font-size: 11px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: var(--radius-full);
}

.sidebar-footer {
  padding: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

/* Top Header */
.top-header {
  height: var(--header-height);
  background: var(--bg-card);
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  position: sticky;
  top: 0;
  z-index: 50;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  cursor: pointer;
  border-radius: var(--radius);
  color: var(--gray-600);
}

.menu-toggle:hover {
  background: var(--gray-100);
}

.menu-toggle svg {
  width: 24px;
  height: 24px;
}

.search-box {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--gray-100);
  border-radius: var(--radius-full);
  padding: 10px 16px;
  width: 320px;
  transition: all var(--transition);
}

.search-box:focus-within {
  background: white;
  box-shadow: 0 0 0 2px var(--primary-200);
}

.search-icon {
  width: 18px;
  height: 18px;
  color: var(--gray-400);
  flex-shrink: 0;
}

.search-box input {
  border: none;
  background: transparent;
  outline: none;
  font-size: 14px;
  width: 100%;
  color: var(--text-primary);
}

.search-box input::placeholder {
  color: var(--gray-400);
}

.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.icon-btn {
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  border-radius: var(--radius);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-600);
  position: relative;
  transition: all var(--transition);
}

.icon-btn:hover {
  background: var(--gray-100);
  color: var(--text-primary);
}

.icon-btn svg {
  width: 22px;
  height: 22px;
}

.notification-dot {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 8px;
  height: 8px;
  background: var(--red-500);
  border-radius: 50%;
  border: 2px solid white;
}

.user-menu {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 6px 12px 6px 6px;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: background var(--transition);
}

.user-menu:hover {
  background: var(--gray-100);
}

.avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--gray-200);
}

.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.user-info {
  display: flex;
  flex-direction: column;
}

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

.user-role {
  font-size: 12px;
  color: var(--text-secondary);
}

/* ========================================
   Dashboard
   ======================================== */
.dashboard {
  flex: 1;
  padding: 32px;
  max-width: 1600px;
}

/* Welcome Section */
.welcome-section {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 28px;
}

.welcome-content h1 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}

.welcome-content p {
  color: var(--text-secondary);
  font-size: 15px;
}

.welcome-date {
  text-align: right;
}

.date-day {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--primary-600);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.date-full {
  font-size: 14px;
  color: var(--text-secondary);
}

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

.stat-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all var(--transition);
}

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

.stat-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}

.stat-icon svg {
  width: 22px;
  height: 22px;
}

.stat-icon.purple {
  background: var(--primary-100);
  color: var(--primary-600);
}

.stat-icon.blue {
  background: var(--primary-50);
  color: var(--primary-500);
}

.stat-icon.green {
  background: #d1fae5;
  color: var(--green-600);
}

.stat-icon.orange {
  background: #fef3c7;
  color: var(--orange-600);
}

.stat-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.stat-value {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}

.stat-label {
  font-size: 11.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-secondary);
}

.stat-trend {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
}

.stat-trend svg {
  width: 16px;
  height: 16px;
}

.stat-trend.up {
  color: var(--green-600);
}

.stat-trend.neutral {
  color: var(--text-muted);
}

/* Main Grid */
.main-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 24px;
  margin-bottom: 28px;
}

.left-column,
.right-column {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

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

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

.card-header h2 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
}

.card-link {
  font-size: 13px;
  font-weight: 500;
  color: var(--primary-600);
  text-decoration: none;
  transition: color var(--transition);
}

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

/* Goals Card */
.goals-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.goal-item {
  padding: 20px;
  background: var(--gray-50);
  border-radius: var(--radius);
  border: 1px solid var(--border-color);
  transition: all var(--transition);
}

.goal-item:hover {
  border-color: var(--primary-200);
  background: var(--primary-50);
}

.goal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.goal-category {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 10px;
  border-radius: var(--radius-full);
}

.goal-category.career {
  background: var(--primary-100);
  color: var(--primary-700);
}

.goal-category.visibility {
  background: var(--primary-50);
  color: var(--primary-500);
}

.goal-category.skills {
  background: var(--gray-100);
  color: var(--gray-700);
}

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

.goal-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.goal-description {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 14px;
  line-height: 1.5;
}

.progress-bar {
  height: 6px;
  background: var(--gray-200);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-500) 0%, var(--primary-400) 100%);
  border-radius: var(--radius-full);
  transition: width 0.5s ease;
}

.progress-fill.visibility {
  background: var(--primary-500);
}

.progress-fill.skills {
  background: var(--primary-400);
}

.goal-milestones {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.milestone {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
}

.milestone svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.milestone.completed {
  color: var(--green-600);
}

.milestone.completed span {
  text-decoration: line-through;
  color: var(--text-muted);
}

.milestone.in-progress {
  color: var(--primary-600);
}

.milestone.pending {
  color: var(--text-muted);
}

/* Sessions Card */
.sessions-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.session-item {
  display: flex;
  gap: 16px;
  padding: 16px;
  background: var(--gray-50);
  border-radius: var(--radius);
  border: 1px solid var(--border-color);
  transition: all var(--transition);
}

.session-item:hover {
  border-color: var(--primary-200);
}

.session-item.next {
  background: linear-gradient(135deg, var(--primary-50) 0%, var(--gray-50) 100%);
  border-color: var(--primary-200);
}

.session-date {
  width: 60px;
  height: 60px;
  background: var(--bg-card);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-color);
  flex-shrink: 0;
}

.session-item.next .session-date {
  background: var(--primary-600);
  border-color: var(--primary-600);
  color: white;
}

.date-number {
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
}

.date-month {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  margin-top: 2px;
}

.session-info {
  flex: 1;
}

.session-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 3px 8px;
  background: var(--primary-600);
  color: white;
  border-radius: var(--radius-full);
  margin-bottom: 6px;
}

.session-info h3 {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.session-time {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-secondary);
}

.session-time svg {
  width: 14px;
  height: 14px;
}

.session-topics {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.topic-tag {
  font-size: 11px;
  font-weight: 500;
  padding: 4px 10px;
  background: white;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-full);
  color: var(--text-secondary);
}

.session-actions {
  display: flex;
  align-items: flex-start;
}

/* Mentor Card */
.mentor-profile {
  text-align: center;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-color);
}

.mentor-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 16px;
  position: relative;
}

.mentor-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid white;
  box-shadow: var(--shadow-md);
}

.status-indicator {
  position: absolute;
  bottom: 4px;
  right: 4px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid white;
}

.status-indicator.online {
  background: var(--green-500);
}

.mentor-name {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.mentor-title {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 2px;
}

.mentor-company {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.mentor-stats {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-bottom: 16px;
}

.mentor-stat {
  text-align: center;
}

.mentor-stat .stat-number {
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
}

.mentor-stat .stat-label {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.mentor-expertise {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
  margin-bottom: 20px;
}

.expertise-tag {
  font-size: 11px;
  font-weight: 500;
  padding: 5px 12px;
  background: var(--primary-50);
  color: var(--primary-700);
  border-radius: var(--radius-full);
}

.mentor-actions {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.match-reason {
  padding-top: 20px;
}

.match-reason h4 {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.match-reason p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Skills Card */
.skills-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.skill-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

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

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

.skill-level {
  font-size: 12px;
  color: var(--text-muted);
}

.skill-bar {
  height: 6px;
  background: var(--gray-200);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.skill-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-500) 0%, var(--primary-400) 100%);
  border-radius: var(--radius-full);
  transition: width 0.5s ease;
}

/* Activity Card */
.activity-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.activity-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.activity-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.activity-icon svg {
  width: 14px;
  height: 14px;
}

.activity-icon.completed {
  background: #d1fae5;
  color: var(--green-600);
}

.activity-icon.milestone {
  background: #fef3c7;
  color: var(--orange-600);
}

.activity-icon.resource {
  background: #dbeafe;
  color: var(--blue-600);
}

.activity-icon.skill {
  background: var(--primary-100);
  color: var(--primary-600);
}

.activity-content p {
  font-size: 13px;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.activity-time {
  font-size: 12px;
  color: var(--text-muted);
}

/* Quick Actions */
.quick-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.action-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
  cursor: pointer;
  transition: all var(--transition);
}

.action-btn:hover {
  border-color: var(--primary-300);
  background: var(--primary-50);
  color: var(--primary-700);
}

.action-btn svg {
  width: 18px;
  height: 18px;
  color: var(--primary-600);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  text-decoration: none; /* anchors styled as buttons must not keep the UA underline */
}

.btn svg {
  width: 16px;
  height: 16px;
}

.btn-sm {
  padding: 8px 14px;
  font-size: 13px;
}

.btn-primary {
  background: var(--primary-700); /* Leadership Plum, 12.3:1 against white text */
  color: white;
}

.btn-primary:hover {
  background: var(--primary-500); /* the guide puts hover states in Momentum Plum */
}

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

.btn-outline:hover {
  border-color: var(--primary-300);
  background: var(--primary-50);
  color: var(--primary-700);
}

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 1200px) {
  .main-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .sidebar.open {
    transform: translateX(0);
  }

  .main-content {
    margin-left: 0;
  }

  .menu-toggle {
    display: flex;
  }

  .top-header {
    padding: 0 16px;
  }

  .search-box {
    display: none;
  }

  .user-info {
    display: none;
  }

  .dashboard {
    padding: 20px 16px;
  }

  .welcome-section {
    flex-direction: column;
    gap: 12px;
  }

  .welcome-date {
    text-align: left;
  }

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

  .session-item {
    flex-direction: column;
  }

  .session-date {
    width: 100%;
    height: auto;
    flex-direction: row;
    gap: 8px;
    padding: 10px;
  }

  .quick-actions {
    flex-direction: column;
  }

  .action-btn {
    width: 100%;
    justify-content: center;
  }

  .mentor-actions {
    flex-direction: column;
  }

  .mentor-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.card {
  animation: fadeIn 0.4s ease;
}

.stat-card:nth-child(1) { animation-delay: 0.05s; }
.stat-card:nth-child(2) { animation-delay: 0.1s; }
.stat-card:nth-child(3) { animation-delay: 0.15s; }
.stat-card:nth-child(4) { animation-delay: 0.2s; }

/* Scrollbar */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: var(--gray-100);
}

::-webkit-scrollbar-thumb {
  background: var(--gray-300);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gray-400);
}
