/* ============================================================
   VFS DESIGN SYSTEM — Village Financial Services
   FCSA New Hire Training Platform
   ============================================================ */

/* --- Custom Properties ------------------------------------ */
:root {
  --color-terracotta: #b16f5a;
  --color-dark-green: #1f5431;
  --color-cream: #ebdcc1;
  --color-white: #ffffff;
  --color-gray: #666666;
  --color-light-green: #c7d4cc;
  --color-muted-green: #8faa98;
  --color-danger: #c0392b;

  --sidebar-width: 260px;
  --topbar-height: 60px;

  --font-heading: 'Costa PTF', Georgia, serif;
  --font-body: 'Muller', Arial, sans-serif;

  --shadow-card: 0 1px 4px rgba(0, 0, 0, 0.08);
  --radius-card: 8px;
  --radius-btn: 6px;
}

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

html, body {
  height: 100%;
}

body {
  font-family: var(--font-body);
  background: var(--color-cream);
  color: #333;
  font-size: 15px;
  line-height: 1.55;
}

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

ul {
  list-style: none;
}

img {
  display: block;
  max-width: 100%;
}

/* --- Layout ----------------------------------------------- */
.app-wrapper {
  display: flex;
  min-height: 100vh;
}

/* --- Sidebar ---------------------------------------------- */
.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: var(--sidebar-width);
  height: 100vh;
  background: var(--color-dark-green);
  color: var(--color-white);
  display: flex;
  flex-direction: column;
  z-index: 200;
  overflow-y: auto;
}

.sidebar-brand {
  padding: 24px 20px 20px;
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: 0.5px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar-brand span {
  display: block;
  font-size: 11px;
  font-family: var(--font-body);
  font-weight: 400;
  opacity: 0.65;
  margin-top: 2px;
  letter-spacing: 0;
}

.sidebar-nav {
  flex: 1;
  padding: 16px 0;
}

.sidebar-nav a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 20px;
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.88);
  border-radius: 4px;
  margin: 2px 10px;
  transition: background 0.15s;
}

.sidebar-nav a:hover {
  background: rgba(255, 255, 255, 0.1);
}

.sidebar-nav a.active {
  background: var(--color-terracotta);
  color: var(--color-white);
}

.sidebar-nav .nav-icon {
  font-size: 16px;
  width: 20px;
  text-align: center;
  flex-shrink: 0;
}

.sidebar-footer {
  padding: 16px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 13px;
}

.sidebar-footer .user-name {
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 6px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sidebar-footer a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  transition: color 0.15s;
}

.sidebar-footer a:hover {
  color: var(--color-white);
}

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

/* --- Top Bar ---------------------------------------------- */
.topbar {
  position: sticky;
  top: 0;
  height: var(--topbar-height);
  background: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.07);
  z-index: 100;
}

.topbar-title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--color-dark-green);
}

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

.progress-pill {
  background: var(--color-light-green);
  color: var(--color-dark-green);
  font-size: 12px;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 20px;
  font-family: var(--font-body);
}

.admin-badge {
  background: var(--color-terracotta);
  color: var(--color-white);
  font-size: 12px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 20px;
  font-family: var(--font-body);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* --- Page Body -------------------------------------------- */
.page-body {
  padding: 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: calc(100vh - var(--topbar-height));
}

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

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-dark-green);
  border-radius: 2px;
}

/* --- Typography ------------------------------------------- */
.page-heading {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  color: var(--color-dark-green);
  margin-bottom: 24px;
}

.section-heading {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--color-dark-green);
  margin-bottom: 16px;
}

.subheading {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--color-gray);
  margin-top: -18px;
  margin-bottom: 24px;
}

/* --- Cards ------------------------------------------------ */
.card {
  background: var(--color-white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: 24px;
}

.card + .card {
  margin-top: 16px;
}

/* --- Stat Cards ------------------------------------------- */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}

.stat-card {
  background: var(--color-white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: 20px 20px 0;
  overflow: hidden;
  position: relative;
}

.stat-card .stat-number {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 700;
  color: var(--color-dark-green);
  line-height: 1.1;
  margin-bottom: 4px;
}

.stat-card .stat-label {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--color-gray);
  margin-bottom: 16px;
}

.stat-card .stat-bar {
  height: 4px;
  background: var(--color-terracotta);
  margin: 0 -20px;
}

/* Primary stat card variant */
.stat-card.stat-primary {
  background: var(--color-terracotta);
}

.stat-card.stat-primary .stat-number {
  color: var(--color-white);
}

.stat-card.stat-primary .stat-label {
  color: rgba(255, 255, 255, 0.8);
}

.stat-card.stat-primary .stat-bar {
  background: rgba(255, 255, 255, 0.3);
}

/* --- Nav Cards (admin dashboard) -------------------------- */
.nav-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 8px;
}

.nav-card {
  background: var(--color-white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: box-shadow 0.15s, transform 0.15s;
  cursor: pointer;
  border: 2px solid transparent;
}

.nav-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  transform: translateY(-1px);
  border-color: var(--color-terracotta);
}

.nav-card .nav-card-icon {
  font-size: 28px;
  margin-bottom: 4px;
}

.nav-card .nav-card-title {
  font-family: var(--font-heading);
  font-size: 18px;
  color: var(--color-dark-green);
  font-weight: 700;
}

.nav-card .nav-card-desc {
  font-size: 13px;
  color: var(--color-gray);
}

/* --- Module Cards ----------------------------------------- */
.module-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.module-card {
  background: var(--color-white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: 20px;
  border-left: 4px solid var(--color-light-green);
  transition: box-shadow 0.15s;
  cursor: pointer;
  display: block;
}

.module-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.module-card.unlocked {
  border-left-color: var(--color-terracotta);
}

.module-card.locked {
  border-left-color: #ababab;
  opacity: 0.7;
  cursor: default;
}

.module-card .module-badge {
  display: inline-block;
  background: var(--color-dark-green);
  color: var(--color-white);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 12px;
  margin-bottom: 10px;
  font-family: var(--font-body);
}

.module-card.locked .module-badge {
  background: #ababab;
}

.module-card .module-title {
  font-family: var(--font-heading);
  font-size: 15px;
  color: var(--color-dark-green);
  font-weight: 700;
  margin-bottom: 8px;
}

.module-card .week-pill {
  display: inline-block;
  background: var(--color-cream);
  color: var(--color-dark-green);
  font-size: 11px;
  padding: 2px 10px;
  border-radius: 12px;
}

.module-card .lock-icon {
  float: right;
  font-size: 16px;
  opacity: 0.5;
}

/* --- Week Section (dashboard) ----------------------------- */
.week-section {
  margin-bottom: 28px;
}

.week-label {
  font-family: var(--font-heading);
  font-size: 17px;
  color: var(--color-dark-green);
  font-weight: 700;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.week-label .week-status {
  font-size: 12px;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--color-gray);
}

.week-modules {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

/* --- Buttons ---------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius-btn);
  padding: 10px 20px;
  cursor: pointer;
  border: none;
  transition: opacity 0.15s, box-shadow 0.15s;
  text-decoration: none;
}

.btn:hover {
  opacity: 0.88;
}

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

.btn-secondary {
  background: var(--color-white);
  border: 2px solid var(--color-terracotta);
  color: var(--color-terracotta);
}

.btn-danger {
  background: var(--color-danger);
  color: var(--color-white);
}

.btn-full {
  width: 100%;
}

.btn-sm {
  font-size: 12px;
  padding: 6px 14px;
}

/* --- Tables ----------------------------------------------- */
.table-wrapper {
  background: var(--color-white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

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

thead tr {
  background: var(--color-cream);
}

thead th {
  padding: 13px 16px;
  text-align: left;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: #555;
  white-space: nowrap;
}

tbody tr {
  background: var(--color-white);
  border-bottom: 1px solid #e5e5e5;
  transition: background 0.1s;
}

tbody tr:last-child {
  border-bottom: none;
}

tbody tr:hover {
  background: #f7f3ec;
}

tbody td {
  padding: 13px 16px;
  font-size: 14px;
  color: #333;
}

/* --- Status Badges ---------------------------------------- */
.badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  font-family: var(--font-body);
}

.badge-ready {
  background: #d4edda;
  color: #2d6a4f;
}

.badge-in-progress {
  background: #fff3cd;
  color: #856404;
}

.badge-needs-creation {
  background: #f8d7da;
  color: #842029;
}

.badge-link-vendor {
  background: #d1ecf1;
  color: #0c5460;
}

.badge-on-track {
  background: #d4edda;
  color: #2d6a4f;
}

/* --- Progress Bars ---------------------------------------- */
.progress-track {
  background: var(--color-light-green);
  border-radius: 3px;
  height: 6px;
  width: 100%;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  border-radius: 3px;
  background: var(--color-muted-green);
  transition: width 0.3s ease;
}

.progress-fill.over-limit {
  background: var(--color-danger);
}

/* --- Form Elements ---------------------------------------- */
.form-group {
  margin-bottom: 18px;
}

.form-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #555;
  margin-bottom: 6px;
  font-family: var(--font-body);
}

.form-control {
  width: 100%;
  padding: 10px 14px;
  font-family: var(--font-body);
  font-size: 14px;
  border: 1.5px solid #ddd;
  border-radius: var(--radius-btn);
  background: var(--color-white);
  color: #333;
  transition: border-color 0.15s, box-shadow 0.15s;
  outline: none;
}

.form-control:focus {
  border-color: var(--color-terracotta);
  box-shadow: 0 0 0 3px rgba(177, 111, 90, 0.12);
}

textarea.form-control {
  resize: vertical;
  min-height: 200px;
}

/* --- Login Page ------------------------------------------- */
.login-page {
  min-height: 100vh;
  background: var(--color-cream);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
  gap: 24px;
}

.login-welcome {
  text-align: center;
  max-width: 400px;
  width: 100%;
  margin-bottom: 8px;
}

.login-welcome-heading {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  color: #1f5431;
  margin-bottom: 8px;
}

.login-welcome-sub {
  font-family: var(--font-body);
  font-size: 15px;
  color: #666666;
}

.welcome-card {
  background: var(--color-white);
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
  padding: 48px 40px;
  width: 100%;
  max-width: 400px;
  text-align: center;
}

.welcome-emoji {
  font-size: 56px;
  line-height: 1;
  margin-bottom: 20px;
}

.welcome-heading {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  color: #1f5431;
  margin-bottom: 10px;
}

.welcome-sub {
  font-family: var(--font-body);
  font-size: 15px;
  color: #666666;
  margin-bottom: 32px;
}

.welcome-btn {
  display: inline-block;
  text-decoration: none;
  padding: 12px 36px;
  font-size: 16px;
}

.login-card {
  background: var(--color-white);
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
  padding: 40px;
  width: 100%;
  max-width: 400px;
}

.login-brand {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  color: var(--color-dark-green);
  margin-bottom: 4px;
}

.login-subtitle {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-gray);
  margin-bottom: 32px;
}

.login-divider {
  height: 1px;
  background: #eee;
  margin: 24px 0;
}

.error-msg {
  background: #fff0ee;
  border: 1px solid #f5c2ba;
  color: var(--color-danger);
  border-radius: var(--radius-btn);
  padding: 10px 14px;
  font-size: 13px;
  margin-bottom: 18px;
}

/* --- Lesson Navigation ------------------------------------ */
.lesson-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 24px;
  gap: 12px;
}

/* --- Certificate Page ------------------------------------- */
.certificate-page {
  min-height: 100vh;
  background: var(--color-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
}

.certificate-card {
  background: var(--color-white);
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
  padding: 60px;
  width: 100%;
  max-width: 700px;
  text-align: center;
}

.cert-title {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 700;
  color: var(--color-dark-green);
  margin-bottom: 12px;
}

.cert-certifies {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--color-gray);
  margin-bottom: 12px;
}

.cert-name {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  color: var(--color-terracotta);
  margin-bottom: 12px;
}

.cert-program-label {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--color-gray);
  margin-bottom: 6px;
}

.cert-program {
  font-family: var(--font-heading);
  font-size: 20px;
  color: var(--color-dark-green);
  margin-bottom: 24px;
}

.cert-date {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--color-gray);
  margin-bottom: 32px;
}

.cert-divider {
  height: 1px;
  background: #e5e5e5;
  margin: 0 auto 24px;
  max-width: 360px;
}

.cert-signatory {
  font-family: var(--font-body);
  font-size: 14px;
  color: #555;
}

.cert-actions {
  margin-top: 32px;
}

/* --- Empty State ------------------------------------------ */
.empty-state {
  text-align: center;
  padding: 48px 24px;
  color: var(--color-gray);
  font-size: 15px;
}

.empty-state .empty-icon {
  font-size: 40px;
  margin-bottom: 12px;
}

/* --- Breadcrumb ------------------------------------------- */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--color-gray);
  margin-bottom: 20px;
}

.breadcrumb a {
  color: var(--color-terracotta);
}

.breadcrumb a:hover {
  text-decoration: underline;
}

/* --- Lesson List ------------------------------------------ */
.lesson-list {
  list-style: none;
}

.lesson-list li {
  border-bottom: 1px solid #f0ece5;
}

.lesson-list li:last-child {
  border-bottom: none;
}

.lesson-list a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 0;
  color: #333;
  transition: color 0.15s;
}

.lesson-list a:hover {
  color: var(--color-terracotta);
}

.lesson-list .lesson-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--color-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--color-dark-green);
  flex-shrink: 0;
}

/* --- Quiz ------------------------------------------------- */
.quiz-question {
  font-family: var(--font-heading);
  font-size: 18px;
  color: var(--color-dark-green);
  margin-bottom: 20px;
}

.quiz-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

.quiz-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border: 1.5px solid #e0d9d0;
  border-radius: var(--radius-btn);
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
}

.quiz-option:hover {
  border-color: var(--color-terracotta);
  background: #fdf7f5;
}

.quiz-option input[type="radio"] {
  accent-color: var(--color-terracotta);
  width: 16px;
  height: 16px;
}

/* --- Try It ----------------------------------------------- */
.scenario-box {
  background: var(--color-cream);
  border-left: 4px solid var(--color-terracotta);
  border-radius: 4px;
  padding: 16px 20px;
  margin-bottom: 20px;
  font-size: 14px;
  color: #444;
  line-height: 1.6;
}

/* --- Utility ---------------------------------------------- */
.mt-8  { margin-top: 8px; }
.mt-12 { margin-top: 12px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.flex  { display: flex; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-12 { gap: 12px; }
.text-gray { color: var(--color-gray); }
.text-sm { font-size: 13px; }

/* --- Print Styles ----------------------------------------- */
@media print {
  .cert-actions,
  .sidebar,
  .topbar {
    display: none !important;
  }

  .certificate-page {
    padding: 0;
  }

  .certificate-card {
    box-shadow: none;
    border-radius: 0;
  }
}

/* --- Mobile Responsive ------------------------------------ */
@media (max-width: 768px) {
  .sidebar {
    transform: translateX(-100%);
    transition: transform 0.25s ease;
  }

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

  .sidebar-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 150;
  }

  .sidebar-overlay.open {
    display: block;
  }

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

  .hamburger {
    display: flex;
  }

  .topbar {
    padding: 0 16px;
  }

  .page-body {
    padding: 20px 16px;
  }

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

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

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

  .nav-card-grid {
    grid-template-columns: 1fr;
  }

  .lesson-nav {
    flex-direction: column;
    align-items: stretch;
  }

  .certificate-card {
    padding: 32px 24px;
  }

  .cert-title {
    font-size: 26px;
  }
}

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

  .week-modules {
    grid-template-columns: 1fr;
  }

  .login-card {
    padding: 28px 20px;
  }
}

/* --- Flash Alerts ----------------------------------------- */
.alert {
  padding: 12px 24px;
  margin: 0;
  font-family: var(--font-body);
  font-size: 14px;
}
.alert-success {
  background: #d4edda;
  color: #2d6a4f;
  border-bottom: 1px solid #c3e6cb;
}
.alert-error {
  background: #f8d7da;
  color: #842029;
  border-bottom: 1px solid #f5c2c7;
}

/* --- Messaging -------------------------------------------- */
.message-bubble {
  max-width: 70%;
  padding: 12px 16px;
  border-radius: 12px;
  margin-bottom: 4px;
  word-wrap: break-word;
}
.message-bubble.sent {
  background: #b16f5a;
  color: white;
  margin-left: auto;
  border-bottom-right-radius: 4px;
}
.message-bubble.received {
  background: #ffffff;
  color: #1a1a1a;
  margin-right: auto;
  border-bottom-left-radius: 4px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}
.message-meta {
  font-size: 11px;
  color: #ababab;
  margin-top: 4px;
  margin-bottom: 16px;
  font-family: var(--font-body);
}
.message-meta.sent {
  text-align: right;
}
.thread-card {
  background: white;
  border-radius: 8px;
  padding: 16px 20px;
  margin-bottom: 8px;
  cursor: pointer;
  border-left: 4px solid transparent;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
  transition: box-shadow 0.2s;
  text-decoration: none;
  display: block;
  color: inherit;
}
.thread-card:hover {
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}
.thread-card.unread {
  border-left-color: #b16f5a;
}
.unread-badge {
  background: #b16f5a;
  color: white;
  border-radius: 10px;
  padding: 2px 8px;
  font-size: 11px;
  font-family: var(--font-body);
}
.avatar-initial {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #1f5431;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 16px;
  flex-shrink: 0;
}
