/* CSS Custom Variables for Light & Dark Mode */
:root {
  --primary: #0f766e;
  --primary-hover: #0d9488;
  --primary-light: #e6f4f1;
  --primary-subtle: #ccfbf1;
  --accent: #d97706;
  --accent-light: #fef3c7;
  --bg-main: #f8fafc;
  --bg-card: #ffffff;
  --bg-subtle: #f1f5f9;
  --text-main: #0f172a;
  --text-muted: #64748b;
  --text-arabic: #0f172a;
  --text-latin: #0f766e;
  --border-color: #e2e8f0;
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --arabic-font: 'Scheherazade New', 'Amiri', serif;
  --arabic-size: 2rem;
}

[data-theme="dark"] {
  --primary: #14b8a6;
  --primary-hover: #2dd4bf;
  --primary-light: #114e47;
  --primary-subtle: #134e4a;
  --accent: #f59e0b;
  --accent-light: #78350f;
  --bg-main: #0f172a;
  --bg-card: #1e293b;
  --bg-subtle: #334155;
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --text-arabic: #f1f5f9;
  --text-latin: #2dd4bf;
  --border-color: #334155;
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.3);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.3);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.4);
}

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

body {
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  background-color: var(--bg-main);
  color: var(--text-main);
  line-height: 1.6;
  transition: background-color 0.3s ease, color 0.3s ease;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Header & Navbar */
header {
  background: var(--bg-card);
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(8px);
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--text-main);
}

.brand-img {
  width: 32px;
  height: 32px;
  max-width: 32px;
  max-height: 32px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.brand-text h1 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--primary);
  line-height: 1.2;
}

@media (max-width: 480px) {
  .brand-text h1 {
    font-size: 0.85rem;
  }
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Utility Buttons */
.btn-icon {
  background: var(--bg-subtle);
  border: 1px solid var(--border-color);
  color: var(--text-main);
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  font-size: 1.05rem;
}

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

.btn-back {
  width: auto;
  padding: 0 1rem;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.9rem;
}

.btn-primary {
  background: var(--primary);
  color: white;
  border: none;
  padding: 0.6rem 1.2rem;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: background-color 0.2s;
  font-size: 0.9rem;
}

.btn-primary:hover {
  background: var(--primary-hover);
}

/* Main Layout Grid */
.main-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5rem 1rem;
  flex: 1;
  width: 100%;
}

/* 4 Feature Category Cards Grid (Matching User Design) */
.feature-categories-grid {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 1rem !important;
  margin-bottom: 1.25rem;
  background: var(--bg-card);
  padding: 1.25rem;
  border-radius: 20px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

@media (min-width: 640px) {
  .feature-categories-grid {
    grid-template-columns: repeat(4, 1fr) !important;
  }
}

.feature-card {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 1rem 0.5rem;
  border-radius: 16px;
  cursor: pointer;
  transition: all 0.25s ease;
  border: 1px solid transparent;
  width: 100%;
}

.feature-card:hover, .feature-card.active {
  background: var(--primary-light);
  border-color: var(--primary);
}

.feature-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.bg-emerald { background: #d1fae5; color: #059669; }
.bg-teal { background: #ccfbf1; color: #0d9488; }
.bg-amber { background: #fef3c7; color: #d97706; }
.bg-emerald-dark { background: #a7f3d0; color: #047857; }

.feature-card span {
  font-weight: 700;
  font-size: 0.925rem;
  color: var(--text-main);
}

/* Quick Access Chips */
.quick-chips-container {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  overflow-x: auto;
  padding: 0.5rem 0.25rem 1.25rem;
  scrollbar-width: none;
}

.quick-chips-container::-webkit-scrollbar {
  display: none;
}

.chip-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  white-space: nowrap;
  margin-right: 0.25rem;
}

.chip-button {
  background: #a7f3d0;
  color: #047857;
  border: none;
  padding: 0.45rem 1rem;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s;
}

.chip-button:hover {
  background: #059669;
  color: white;
  transform: translateY(-1px);
}

/* Search & Filter Bar */
.search-filter-section {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 1rem;
  margin-bottom: 1.25rem;
  box-shadow: var(--shadow-sm);
}

.search-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .search-grid {
    grid-template-columns: 2fr 1fr;
  }
}

@media (min-width: 1024px) {
  .search-grid {
    grid-template-columns: 3fr 1fr 1fr;
  }
}

.input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.input-icon {
  position: absolute;
  left: 0.85rem;
  color: var(--text-muted);
  font-size: 1.1rem;
  pointer-events: none;
}

.input-control {
  width: 100%;
  padding: 0.65rem 0.85rem 0.65rem 2.5rem;
  background: var(--bg-subtle);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  color: var(--text-main);
  font-size: 0.925rem;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.input-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.15);
}

select.input-control {
  padding-left: 0.85rem;
  cursor: pointer;
}

/* Navigation Tabs (Surah vs Juz) */
.tab-navigation {
  display: flex;
  gap: 0.5rem;
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 1.25rem;
}

.tab-button {
  padding: 0.65rem 1.25rem;
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  color: var(--text-muted);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.tab-button.active {
  color: var(--primary);
  border-bottom-color: var(--primary);
}

/* Surah Grid */
.surah-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 640px) {
  .surah-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .surah-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.surah-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  color: var(--text-main);
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

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

.surah-card-left {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.surah-number {
  width: 38px;
  height: 38px;
  background: var(--primary-light);
  color: var(--primary);
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.surah-info h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.15rem;
}

.surah-info p {
  font-size: 0.775rem;
  color: var(--text-muted);
}

.surah-arabic-name {
  font-family: var(--arabic-font);
  font-size: 1.4rem;
  color: var(--primary);
  font-weight: bold;
}

/* Juz Grid */
.juz-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
}

@media (min-width: 640px) {
  .juz-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .juz-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

.juz-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 0.85rem 1rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
}

/* Quran Reader Top Control Bar (Matching Reference Image) */
.quran-top-bar {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
  .quran-top-bar {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.quran-nav-controls {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.surah-prev-next-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.surah-nav-btn {
  background: var(--bg-subtle);
  border: 1px solid var(--border-color);
  color: var(--text-main);
  padding: 0.35rem 0.85rem;
  border-radius: 20px;
  font-size: 0.825rem;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: all 0.2s;
}

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

.surah-dropdown-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.surah-select-control, .ayat-select-control {
  background: var(--bg-subtle);
  border: 1px solid var(--border-color);
  color: var(--text-main);
  padding: 0.35rem 0.75rem;
  border-radius: 10px;
  font-size: 0.825rem;
  font-weight: 600;
  outline: none;
  cursor: pointer;
  transition: border-color 0.2s;
}

.surah-select-control:focus, .ayat-select-control:focus {
  border-color: var(--primary);
}

/* Centered Surah Header (Matching Reference Image) */
.reader-header-centered {
  text-align: center;
  margin: 1.5rem 0 2rem;
  padding-bottom: 1rem;
}

.surah-arabic-title {
  font-family: var(--arabic-font);
  font-size: 3rem;
  color: var(--text-arabic);
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 0.35rem;
}

.surah-latin-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.15rem;
}

.surah-meta-subtitle {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* Bismillah Banner Centered */
.bismillah {
  font-family: var(--arabic-font) !important;
  font-size: var(--arabic-size) !important;
  text-align: center !important;
  direction: rtl !important;
  color: var(--text-arabic) !important;
  margin: 2rem auto !important;
  font-weight: 500 !important;
  width: 100% !important;
  display: block !important;
}

.juz-card:hover {
  background: var(--primary-light);
  border-color: var(--primary);
  color: var(--primary);
}

.juz-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
}

.juz-card p {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Section Title & Subtitle */
.section-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.25rem;
}

.section-subtitle {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

/* Module Top Bar (Top bar with Back, Pill Badge, Settings) */
.module-top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.module-title-badge {
  background: var(--primary-light);
  color: var(--primary);
  font-weight: 700;
  padding: 0.4rem 1.5rem;
  border-radius: 20px;
  font-size: 0.95rem;
}

/* Segmented Control Switcher (e.g. [ Tahlil ] | [ Yasin ] or [ Doa ] | [ Wirid ]) */
.segmented-control {
  display: flex;
  background: var(--bg-subtle);
  padding: 0.25rem;
  border-radius: 24px;
  border: 1px solid var(--border-color);
  gap: 0.25rem;
}

.segmented-btn {
  padding: 0.45rem 1.25rem;
  border: none;
  background: transparent;
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.875rem;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.segmented-btn.active {
  background: var(--primary-light);
  color: var(--primary);
  box-shadow: var(--shadow-sm);
}

/* Grid Catalog Cards (Maulid, Wirid, Doa) */
.grid-catalog {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 640px) {
  .grid-catalog {
    grid-template-columns: repeat(2, 1fr);
  }
}

.catalog-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  transition: all 0.2s;
}

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

.card-number-badge {
  width: 44px;
  height: 44px;
  background: var(--primary-light);
  color: var(--primary);
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.catalog-card-info h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.15rem;
}

.catalog-card-info p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Minimal Reader Header (Maulid, Tahlil, Wirid, Doa) */
.reader-header-minimal {
  text-align: center;
  margin-bottom: 1.75rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-color);
}

.reader-header-minimal h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.25rem;
}

.pasal-selector-wrapper {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--bg-subtle);
  padding: 0.35rem 0.85rem;
  border-radius: 20px;
  margin: 0.5rem 0;
  border: 1px solid var(--border-color);
}

.pasal-dropdown {
  background: transparent;
  border: none;
  color: var(--primary);
  font-weight: 700;
  font-size: 0.875rem;
  outline: none;
  cursor: pointer;
}

/* Reader Items List & Cards */
.reader-items-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.reader-item-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 1.25rem;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.2s;
  position: relative;
}

.reader-item-card:hover {
  border-color: var(--primary);
}

.reader-item-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}

.reader-item-badge {
  background: var(--primary-light);
  color: var(--primary);
  font-weight: 700;
  font-size: 0.8rem;
  padding: 0.2rem 0.6rem;
  border-radius: 12px;
}

.btn-copy {
  background: transparent;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  padding: 0.35rem;
  border-radius: 6px;
  transition: all 0.2s;
}

.btn-copy:hover {
  color: var(--primary);
  background: var(--bg-subtle);
}

/* Ayat / Text Formatting */
.maulid-header-title {
  font-family: var(--arabic-font);
  font-size: 2.2rem;
  color: #dc2626; /* Crimson Red header title as in media_1787875516313.png */
  text-align: center;
  direction: rtl;
  margin: 0.5rem 0 1.5rem 0;
  font-weight: bold;
}

.ayat-arabic {
  font-family: var(--arabic-font);
  font-size: var(--arabic-size);
  color: var(--text-arabic);
  text-align: right;
  direction: rtl;
  line-height: 2.2;
  margin-bottom: 0.85rem;
  font-weight: 500;
}

.ayat-latin {
  font-size: 0.95rem;
  color: #0d9488; /* Teal / Green transliteration as in media_1787875516313.png */
  font-weight: 500;
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.ayat-terjemah {
  font-size: 0.925rem;
  color: #334155; /* Neutral dark translation as in media_1787875516313.png */
  line-height: 1.7;
}

/* Dual Nav Footer for Maulid */
.dual-nav-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-color);
}

/* Modal Overlay & Box */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s ease;
  backdrop-filter: blur(4px);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-box {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  width: 100%;
  max-width: 750px;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  transform: translateY(20px);
  transition: transform 0.25s ease;
}

.modal-overlay.active .modal-box {
  transform: translateY(0);
}

.modal-header {
  padding: 1.15rem 1.25rem;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bg-subtle);
}

.modal-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
}

.modal-body {
  padding: 1.25rem;
  overflow-y: auto;
  flex: 1;
}

/* Settings Toggle Rows */
.setting-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 0;
  border-bottom: 1px dashed var(--border-color);
}

.setting-desc {
  font-size: 0.775rem;
  color: var(--text-muted);
}

/* Custom Toggle Switch */
.toggle-switch {
  position: relative;
  display: inline-block;
  width: 48px;
  height: 26px;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: #cbd5e1;
  transition: .3s;
  border-radius: 26px;
}

.toggle-slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: .3s;
  border-radius: 50%;
}

input:checked + .toggle-slider {
  background-color: var(--primary);
}

input:checked + .toggle-slider:before {
  transform: translateX(22px);
}

.preview-box {
  margin-top: 1.25rem;
  padding: 1rem;
  border: 1px dashed var(--border-color);
  border-radius: 12px;
  background: var(--bg-subtle);
}

/* Tafsir Toggle Group */
.tafsir-toggle-group {
  display: flex;
  background: var(--bg-subtle);
  padding: 0.25rem;
  border-radius: 10px;
  margin-bottom: 1rem;
  gap: 0.25rem;
}

.tafsir-toggle-btn {
  flex: 1;
  padding: 0.5rem;
  border: none;
  background: transparent;
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
}

.tafsir-toggle-btn.active {
  background: var(--bg-card);
  color: var(--primary);
  box-shadow: var(--shadow-sm);
}

.tafsir-content-text {
  font-size: 0.975rem;
  line-height: 1.8;
  color: var(--text-main);
  white-space: pre-line;
}

/* Toast Notification */
.toast-notification {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--text-main);
  color: var(--bg-card);
  padding: 0.75rem 1.5rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 200;
  pointer-events: none;
}

.toast-notification.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* Bookmark Banner */
.bookmark-banner {
  background: var(--accent-light);
  border: 1px solid var(--accent);
  color: var(--text-main);
  border-radius: 12px;
  padding: 0.85rem 1rem;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Loading State */
.loading-state {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--text-muted);
}

.spinner {
  width: 40px;
  height: 40px;
  border: 4px solid var(--border-color);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 0 auto 1rem;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Footer */
footer {
  background: var(--bg-card);
  border-top: 1px solid var(--border-color);
  padding: 1.5rem 1rem;
  text-align: center;
  margin-top: auto;
  font-size: 0.85rem;
  color: var(--text-muted);
}
