/* ============================================================
   SÉNÉGAL IMPACT CHALLENGE — Global Design System
   ============================================================ */

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

/* ---- TOKENS ---- */
:root {
  --c-primary: #F7A012;
  --c-primary-d: #d4880a;
  --c-green: #006837;
  --c-green-d: #004d2a;
  --c-dark: #1a1a2e;
  --c-text: #2d3436;
  --c-muted: #8898aa;
  --c-border: #e9ecef;
  --c-bg: #f4f6f9;
  --c-white: #ffffff;
  --c-surface: #ffffff;

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.10);

  --ease: cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, sans-serif;
  background: var(--c-bg);
  color: var(--c-text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ---- CONTAINER ---- */
.container {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================================
   NAVIGATION — Green Brand
   ============================================================ */
.navbar {
  background: var(--c-green);
  position: sticky;
  top: 0;
  z-index: 9999;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  box-shadow: 0 4px 24px rgba(0, 104, 55, 0.3);
}

.navbar .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 20px;
}

.navbar .logo img {
  height: 40px;
  display: block;
}

/* Orange accent bar under logo */
.navbar .logo {
  position: relative;
  padding-bottom: 4px;
}

.navbar .logo::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 32px;
  height: 3px;
  background: var(--c-primary);
  border-radius: 2px;
}

.nav-links {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  display: block;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.65);
  transition: color 0.2s, background 0.2s;
  position: relative;
}

.nav-links a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
}

.nav-links a.active {
  color: var(--c-primary);
  background: rgba(247, 160, 18, 0.1);
}

/* CTA buttons in nav */
.nav-links .btn-nav {
  background: var(--c-primary);
  color: #fff !important;
  padding: 9px 20px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.88rem;
  box-shadow: 0 4px 12px rgba(247, 160, 18, 0.25);
  transition: all 0.25s;
}

.nav-links .btn-nav:hover {
  background: var(--c-primary-d);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(247, 160, 18, 0.35);
  color: #fff !important;
}

.nav-links .btn-nav-outline {
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.85) !important;
  padding: 8px 18px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.88rem;
  transition: all 0.25s;
  background: transparent;
}

.nav-links .btn-nav-outline:hover {
  border-color: var(--c-primary);
  color: var(--c-primary) !important;
  background: rgba(247, 160, 18, 0.07);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  border: none;
  background: none;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: rgba(255, 255, 255, 0.75);
  border-radius: 2px;
  transition: all 0.3s var(--ease);
}

/* Mobile Drawer */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 8888;
  opacity: 0;
  transition: opacity 0.3s;
}

.mobile-nav.open {
  opacity: 1;
}

.mobile-nav .drawer {
  position: absolute;
  top: 0;
  right: 0;
  width: 280px;
  height: 100%;
  background: var(--c-dark);
  padding: 30px 24px;
  transform: translateX(100%);
  transition: transform 0.35s var(--ease);
  display: flex;
  flex-direction: column;
  gap: 6px;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-nav.open .drawer {
  transform: translateX(0);
}

.mobile-nav a {
  display: block;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  font-weight: 500;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid transparent;
  transition: all 0.2s;
}

.mobile-nav a:hover {
  background: rgba(255, 255, 255, 0.07);
  color: white;
}

.mobile-nav .btn-nav {
  background: var(--c-primary);
  color: white !important;
  text-align: center;
  border-radius: 50px;
  margin-top: 10px;
  font-weight: 700;
}

.mobile-nav .btn-nav-outline {
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.85) !important;
  text-align: center;
  border-radius: 50px;
}

.mobile-nav .drawer-close {
  align-self: flex-end;
  background: rgba(255, 255, 255, 0.08);
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  margin-bottom: 16px;
  color: white;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: linear-gradient(135deg, var(--c-green) 0%, var(--c-green-d) 100%);
  color: var(--c-white);
  padding: 110px 24px 140px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  top: -200px;
  right: -200px;
  pointer-events: none;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 900;
  letter-spacing: -1.5px;
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero p {
  font-size: clamp(1rem, 2vw, 1.18rem);
  opacity: 0.88;
  max-width: 640px;
  margin: 0 auto 40px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  font-family: inherit;
  cursor: pointer;
  border: none;
  transition: all 0.25s var(--ease);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--c-primary);
  color: white;
  box-shadow: 0 4px 16px rgba(247, 160, 18, 0.3);
}

.btn-primary:hover {
  background: var(--c-primary-d);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(247, 160, 18, 0.4);
}

.btn-secondary {
  background: white;
  color: var(--c-green);
  box-shadow: var(--shadow-sm);
}

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

.btn-outline {
  background: transparent;
  color: var(--c-muted);
  border: 2px solid var(--c-border);
}

.btn-outline:hover {
  border-color: var(--c-text);
  color: var(--c-text);
}

.btn-green {
  background: var(--c-green);
  color: white;
  box-shadow: 0 4px 16px rgba(0, 104, 55, 0.25);
}

.btn-green:hover {
  background: var(--c-green-d);
  transform: translateY(-2px);
}

.btn-danger {
  background: #e74c3c;
  color: white;
}

.btn-danger:hover {
  background: #c0392b;
}

.btn-sm {
  padding: 7px 16px;
  font-size: 0.82rem;
}

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

/* ============================================================
   ALERTS
   ============================================================ */
.alert {
  padding: 14px 20px;
  border-radius: var(--radius-sm);
  margin-bottom: 24px;
  font-size: 0.9rem;
  font-weight: 500;
  border: 1px solid transparent;
}

.alert-error {
  background: #fff5f5;
  color: #c53030;
  border-color: #fed7d7;
}

.alert-success {
  background: #f0faf4;
  color: #276749;
  border-color: #c6f6d5;
}

.alert-info {
  background: #e3f2fd;
  color: #0d47a1;
  border-color: #bbdefb;
}

/* ============================================================
   STATS
   ============================================================ */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: -55px auto 0;
  position: relative;
  z-index: 10;
}

.stat-card {
  background: var(--c-white);
  border-radius: var(--radius-md);
  padding: 28px 20px;
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: transform 0.25s var(--ease);
}

.stat-card:hover {
  transform: translateY(-4px);
}

.stat-card .num {
  display: block;
  font-size: 2rem;
  font-weight: 900;
  color: var(--c-primary);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-card .lbl {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--c-muted);
}

/* ============================================================
   SECTION UTILITIES
   ============================================================ */
.section {
  padding: 90px 0;
}

.section-sm {
  padding: 50px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 55px;
}

.section-title h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  margin-bottom: 12px;
}

.section-title p {
  color: var(--c-muted);
  max-width: 540px;
  margin: 0 auto;
}

.section-title .tag {
  display: inline-block;
  background: #fff8ef;
  color: var(--c-primary);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 14px;
}

/* ============================================================
   CARDS (Domain / Feature cards)
   ============================================================ */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.domain-card {
  background: var(--c-white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  border: 1px solid var(--c-border);
  transition: all 0.3s var(--ease);
  cursor: default;
}

.domain-card:hover {
  border-color: var(--c-primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.domain-card .icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  background: #f0faf4;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
}

.domain-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.domain-card p {
  font-size: 0.88rem;
  color: var(--c-muted);
  line-height: 1.6;
}

/* ============================================================
   FORMS (Shared)
   ============================================================ */
.form-card {
  background: var(--c-white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--c-border);
}

.form-section-label {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--c-primary);
  margin-bottom: 18px;
  margin-top: 30px;
  padding-bottom: 10px;
  border-bottom: 2px solid #f0f0f0;
  display: block;
}

.fld {
  position: relative;
  margin-bottom: 20px;
}

.fld input,
.fld select,
.fld textarea {
  width: 100%;
  padding: 18px 16px 8px;
  border: 2px solid var(--c-border);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--c-text);
  background: var(--c-white);
  outline: none;
  transition: border 0.2s, box-shadow 0.2s;
  appearance: none;
  -webkit-appearance: none;
}

.fld label {
  position: absolute;
  top: 14px;
  left: 16px;
  font-size: 0.9rem;
  color: var(--c-muted);
  pointer-events: none;
  transition: all 0.2s;
}

.fld input:focus,
.fld select:focus,
.fld textarea:focus {
  border-color: var(--c-primary);
  box-shadow: 0 0 0 4px rgba(247, 160, 18, 0.1);
}

.fld input:focus~label,
.fld input:not(:placeholder-shown)~label,
.fld select:focus~label,
.fld select:valid~label,
.fld textarea:focus~label,
.fld textarea:not(:placeholder-shown)~label {
  top: 5px;
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--c-primary);
}

.fld select {
  padding-top: 22px;
  cursor: pointer;
}

.frow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* ============================================================
   DASHBOARD LAYOUT (Sidebar + Content)
   ============================================================ */
.dash-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  min-height: calc(100vh - 68px);
}

.dash-sidebar {
  background: var(--c-dark);
  color: var(--c-white);
  padding: 32px 20px;
  position: sticky;
  top: 68px;
  height: calc(100vh - 68px);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.dash-sidebar .sidebar-title {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 10px;
  margin-top: 20px;
  padding: 0 12px;
}

.dash-sidebar a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-weight: 500;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
  transition: all 0.2s;
}

.dash-sidebar a:hover,
.dash-sidebar a.active {
  background: rgba(255, 255, 255, 0.1);
  color: white;
}

.dash-sidebar a.active {
  background: rgba(247, 160, 18, 0.2);
  color: var(--c-primary);
}

.dash-sidebar .sidebar-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
}

.dash-sidebar .user-info {
  margin-top: auto;
  padding: 16px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-sm);
}

.dash-sidebar .user-info strong {
  display: block;
  font-size: 0.9rem;
  color: white;
}

.dash-sidebar .user-info span {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.45);
}

.dash-content {
  padding: 40px 36px;
}

.dash-header {
  margin-bottom: 36px;
}

.dash-header h1 {
  font-size: 1.8rem;
  font-weight: 800;
}

.dash-header p {
  color: var(--c-muted);
  margin-top: 4px;
}

/* KPI row */
.kpi-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  margin-bottom: 36px;
}

.kpi-card {
  background: var(--c-white);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  border: 1px solid var(--c-border);
  box-shadow: var(--shadow-sm);
}

.kpi-card .kpi-num {
  font-size: 2rem;
  font-weight: 900;
  color: var(--c-primary);
  line-height: 1;
  margin-bottom: 6px;
}

.kpi-card .kpi-label {
  font-size: 0.82rem;
  color: var(--c-muted);
  font-weight: 500;
}

/* ============================================================
   TABLES
   ============================================================ */
.table-wrap {
  background: var(--c-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--c-border);
  overflow-x: auto;
  overflow-y: hidden;
}

.table-wrap .tw-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--c-border);
}

.table-wrap .tw-header h3 {
  font-size: 1rem;
  font-weight: 700;
}

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

table th {
  padding: 14px 20px;
  text-align: left;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--c-muted);
  background: var(--c-bg);
  border-bottom: 1px solid var(--c-border);
}

table td {
  padding: 16px 20px;
  font-size: 0.9rem;
  border-bottom: 1px solid var(--c-border);
  vertical-align: middle;
}

table tr:last-child td {
  border-bottom: none;
}

table tr:hover td {
  background: #fafbff;
}

/* ============================================================
   BADGES
   ============================================================ */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 12px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}

.badge-pending {
  background: #fff8e1;
  color: #e65100;
}

.badge-pending::before {
  background: #e65100;
}

.badge-validated {
  background: #e8f5e9;
  color: #2e7d32;
}

.badge-validated::before {
  background: #2e7d32;
}

.badge-rejected {
  background: #ffebee;
  color: #c62828;
}

.badge-rejected::before {
  background: #c62828;
}

/* ============================================================
   ALERTS & NOTIFICATIONS
   ============================================================ */
.alert {
  padding: 14px 20px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  margin-bottom: 24px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.alert-error {
  background: #fff5f5;
  border: 1px solid #fed7d7;
  color: #c53030;
}

.alert-success {
  background: #f0faf4;
  border: 1px solid #c6f6d5;
  color: #276749;
}

.alert-info {
  background: #ebf8ff;
  border: 1px solid #bee3f8;
  color: #2b6cb0;
}

/* ============================================================
   JURY PROJECT CARD
   ============================================================ */
.jury-card {
  background: var(--c-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--c-border);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s;
}

.jury-card:hover {
  box-shadow: var(--shadow-md);
}

.jury-card .jcard-head {
  background: linear-gradient(135deg, var(--c-green) 0%, var(--c-green-d) 100%);
  color: white;
  padding: 24px 28px;
}

.jury-card .jcard-head h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.jury-card .jcard-head span {
  font-size: 0.82rem;
  opacity: 0.75;
}

.jury-card .jcard-body {
  padding: 28px;
}

.score-input-wrap label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--c-muted);
  margin-bottom: 8px;
}

.score-input-wrap input[type=number] {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--c-border);
  border-radius: var(--radius-sm);
  font-size: 1.2rem;
  font-weight: 700;
  text-align: center;
  outline: none;
  font-family: inherit;
}

.score-input-wrap input:focus {
  border-color: var(--c-primary);
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--c-dark);
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
  padding: 36px 24px;
  font-size: 0.85rem;
}

footer strong {
  color: rgba(255, 255, 255, 0.85);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .dash-layout {
    grid-template-columns: 220px 1fr;
  }

  .dash-content {
    padding: 30px 24px;
  }
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    display: none !important;
  }

  .mobile-nav {
    display: block;
  }

  .hero {
    padding: 70px 20px 100px;
  }

  .stats-bar {
    grid-template-columns: repeat(2, 1fr);
    margin-top: -30px;
  }

  .dash-layout {
    grid-template-columns: 1fr;
  }

  .dash-sidebar {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 8000;
  }

  .dash-sidebar.open {
    display: flex;
  }

  .dash-content {
    padding: 24px 16px;
  }

  .kpi-row {
    grid-template-columns: 1fr 1fr;
  }

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

  .form-card {
    padding: 24px 16px;
  }

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

  .table-wrap {
    overflow-x: auto;
  }

  table {
    min-width: 600px;
  }

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

  .hero-ctas {
    flex-direction: column;
    align-items: center;
  }

  .hero-ctas .btn {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }
}

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

  .kpi-row {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   MODALS / POPUPS
   ============================================================ */
.modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  animation: fadeIn 0.3s ease;
}

.modal-content {
  background-color: var(--c-white);
  margin: 5% auto;
  padding: 40px;
  border-radius: var(--radius-lg);
  width: 90%;
  max-width: 600px;
  box-shadow: var(--shadow-lg);
  position: relative;
  animation: slideDown 0.4s var(--ease);
}

.modal-header {
  margin-bottom: 24px;
}

.modal-header h2 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--c-dark);
}

.close {
  position: absolute;
  right: 24px;
  top: 20px;
  color: var(--c-muted);
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.2s;
}

.close:hover {
  color: var(--c-primary);
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes slideDown {
  from {
    transform: translateY(-30px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* ============================================================
   COLLAPSIBLE SECTIONS
   ============================================================ */
.table-wrap.collapsed table {
  display: none;
}

.table-wrap.collapsed .tw-header {
  border-bottom: none;
}

.toggle-icon {
  font-size: 0.8rem;
  transition: transform 0.3s ease;
  color: var(--c-muted);
}

.collapsed .toggle-icon {
  transform: rotate(180deg);
}