/* ==========================================
   1. COLOR PALETTE & LIGHT/DARK THEMING
   ========================================== */
:root[data-theme="light"] {
  --bg-cream: #FDFBF4;
  --bg-card: #F7F3E9;
  --text-dark: #122922;
  --text-muted: #5B6C64;
  --primary-green: #006B54;
  --primary-green-hover: #004D3C;
  --primary-yellow: #FFB800;
  --primary-yellow-hover: #006B54;
  --dark-bg: #111A17;
  --dark-card: #1B2622;
  --border-light: rgba(0, 107, 84, 0.12);
  --reader-text: #ffffff;
  --reader-muted: rgba(255, 255, 255, 0.8);
}

:root[data-theme="dark"] {
  --bg-cream: #0e1513;
  --bg-card: #16211e;
  --text-dark: #f0f5f3;
  --text-muted: #94a39d;
  --primary-green: #008f70;
  --primary-green-hover: #00b38c;
  --primary-yellow: #FFB800;
  --primary-yellow-hover: #008f70;
  --dark-bg: #070b0a;
  --dark-card: #0f1715;
  --border-light: rgba(255, 255, 255, 0.12);
  --reader-text: #f0f5f3;
  --reader-muted: rgba(255, 255, 255, 0.8);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: var(--bg-cream);
  color: var(--text-dark);
  font-family: 'Plus Jakarta Sans', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  transition: background-color 0.3s, color 0.3s;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.text-center { text-align: center; }

.section-sub {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 30px;
}

.center-btn {
  display: flex;
  justify-content: center;
}

/* ==========================================
   2. NAVBAR & MOBILE NAVIGATION
   ========================================== */
.navbar {
  padding: 16px 0;
  background: var(--bg-cream);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--border-light);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand-logo {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--primary-green);
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-links {
  display: flex;
  gap: 16px;
}

.nav-links a {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  padding: 6px 12px;
  border-radius: 50px;
  transition: all 0.2s;
}

.nav-links a:hover, .nav-links a.active {
  color: #ffffff;
  background-color: var(--primary-green);
}

.nav-auth {
  display: flex;
  align-items: center;
  gap: 10px;
}

.theme-toggle-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border-light);
  background: var(--bg-card);
  color: var(--text-dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

.theme-toggle-btn.active {
  background: var(--primary-green);
  color: #ffffff;
}

.mobile-hamburger {
  display: none;
}

/* ==========================================
   3. HERO & MARQUEE
   ========================================== */
.hero-section {
  padding: 30px 0 50px;
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3.8rem);
  font-weight: 800;
  color: var(--primary-green);
  line-height: 1.15;
  margin-bottom: 24px;
}

.hero-content-grid {
  display: grid;
  grid-template-columns: 240px 240px 1fr;
  gap: 20px;
  align-items: flex-end;
}

.hero-card {
  height: 300px;
  border-radius: 20px;
  overflow: hidden;
}

.hero-text-block {
  padding-left: 10px;
}

.hero-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.btn-action {
  padding: 12px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-green { background: var(--primary-green); color: #ffffff; }
.btn-yellow { background: var(--primary-yellow); color: #122922; }

/* MARQUEE */
.ribbon-wrapper {
  margin: 30px 0 50px;
  overflow: hidden;
}

.ribbon {
  width: 110%;
  margin-left: -5%;
  padding: 12px 0;
  white-space: nowrap;
  font-weight: 700;
}

.ribbon-green { background: var(--primary-green); color: #ffffff; transform: rotate(-2deg); }
.ribbon-yellow { background: var(--primary-yellow); color: #122922; transform: rotate(-0.5deg); margin-top: -36px; }

.ribbon-track { display: inline-block; animation: marquee 25s linear infinite; }
.ribbon-track span { margin-right: 30px; }

@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ==========================================
   4. PRAYERS TRACKER
   ========================================== */
.prayers-section { padding: 30px 0 50px; }

.prayer-cards-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

.prayer-card {
  background: var(--bg-card);
  padding: 16px;
  border-radius: 18px;
  text-align: center;
  border: 1px solid var(--border-light);
}

.prayer-card.active {
  border-color: var(--primary-green);
  box-shadow: 0 8px 20px rgba(0, 107, 84, 0.12);
}

.prayer-card h4 { font-size: 0.85rem; color: var(--text-muted); }
.prayer-card .prayer-time { font-size: 1rem; font-weight: 800; color: var(--primary-green); display: block; margin: 6px 0; }

.prayer-check-btn {
  background: transparent;
  border: none;
  font-size: 0.75rem;
  color: var(--text-muted);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.prayer-check-btn.recorded { color: var(--primary-green); font-weight: 700; }

/* ==========================================
   5. QIBLA & TASBIH COUNTER
   ========================================== */
.qibla-section { padding: 30px 0 50px; }

.qibla-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.qibla-card, .tasbih-card {
  background: var(--bg-card);
  padding: 24px;
  border-radius: 20px;
  border: 1px solid var(--border-light);
}

.compass-wrapper {
  display: flex;
  justify-content: center;
  margin: 16px 0;
}

.compass-dial {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 4px solid var(--primary-green);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-cream);
  box-shadow: inset 0 0 15px rgba(0, 107, 84, 0.08);
}

.direction { position: absolute; font-weight: 800; font-size: 0.8rem; color: var(--text-muted); }
.north { top: 8px; } .south { bottom: 8px; } .east { right: 12px; } .west { left: 12px; }

.compass-needle {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.needle-north {
  position: absolute;
  top: 20px;
  width: 4px;
  height: 36px;
  background: var(--primary-green);
  border-radius: 2px;
}

.kaaba-pointer {
  position: absolute;
  top: 8px;
  font-size: 1.5rem;
  color: var(--primary-yellow);
  transform: translateY(-8px);
}

.user-coords {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.btn-locate {
  margin-top: 14px;
  background: var(--bg-cream);
  border: 1px solid var(--border-light);
  color: var(--text-dark);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s ease;
}

.btn-locate:hover {
  background: var(--primary-green);
  color: #ffffff;
}

.tasbih-counter-display {
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--primary-green);
  margin: 8px 0;
}

.tasbih-preset-btns { display: flex; justify-content: center; gap: 6px; margin-bottom: 12px; flex-wrap: wrap; }

.preset-btn {
  background: transparent;
  border: 1px solid var(--border-light);
  padding: 6px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  cursor: pointer;
  color: var(--text-dark);
}

.preset-btn.active { background: var(--primary-green); color: #ffffff; }

.current-dhikr-label { font-family: 'Amiri', serif; font-size: 1.4rem; color: var(--primary-yellow); margin-bottom: 14px; }

.tasbih-controls { display: flex; justify-content: center; gap: 10px; }

.btn-count, .btn-reset {
  padding: 10px 22px;
  border-radius: 50px;
  border: none;
  font-weight: 700;
  cursor: pointer;
}

.btn-count { background: var(--primary-green); color: #ffffff; }
.btn-reset { background: rgba(0,0,0,0.05); color: var(--text-dark); }

/* ==========================================
   6. SURAH INDEX
   ========================================== */
.surah-section { padding: 30px 0 50px; }

.filter-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.search-box {
  flex: 1;
  position: relative;
}

.search-box input {
  width: 100%;
  padding: 10px 16px;
  border-radius: 50px;
  border: 1px solid var(--border-light);
  background: var(--bg-card);
  color: var(--text-dark);
  outline: none;
}

.search-btn {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--text-muted);
}

.sort-box {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
}

.sort-box select {
  padding: 8px 12px;
  border-radius: 50px;
  border: 1px solid var(--border-light);
  background: var(--bg-card);
  color: var(--text-dark);
}

.surah-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 24px;
}

.surah-card {
  background: var(--bg-card);
  border-radius: 18px;
  padding: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid var(--border-light);
  cursor: pointer;
  transition: all 0.2s;
}

.surah-card:hover, .surah-card.active {
  background: var(--primary-green);
  color: #ffffff;
  border-color: var(--primary-green);
}

.surah-num {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(0,0,0,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.8rem;
}

.surah-details { flex: 1; margin-left: 10px; }
.surah-details h4 { font-size: 0.85rem; color: var(--text-dark); }
.surah-details p { font-size: 0.75rem; color: var(--text-muted); }
.surah-card:hover .surah-details h4, .surah-card.active .surah-details h4 { color: #ffffff; }
.surah-card:hover .surah-details p, .surah-card.active .surah-details p { color: rgba(255,255,255,0.8); }
.surah-arabic { font-family: 'Amiri', serif; font-size: 1.2rem; }

.btn-yellow-pill {
  background: var(--primary-yellow);
  color: #122922;
  padding: 12px 30px;
  border-radius: 50px;
  border: none;
  font-weight: 700;
  cursor: pointer;
}

/* ==========================================
   7. READER & STICKY AUDIO BAR
   ========================================== */
.quran-reader-section {
  background: var(--dark-bg);
  color: #ffffff;
  padding: 50px 0;
}

.reader-header-box {
  background: var(--dark-card);
  padding: 20px;
  border-radius: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 14px;
}

.badge-surah-num {
  background: var(--primary-green);
  padding: 4px 10px;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 700;
}

.surah-player-controls {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-play-surah {
  background: var(--primary-green);
  color: #ffffff;
  border: none;
  padding: 10px 18px;
  border-radius: 50px;
  font-weight: 700;
  cursor: pointer;
  font-size: 0.8rem;
}

.jump-select {
  padding: 9px 14px;
  border-radius: 50px;
  border: none;
  font-weight: 700;
  font-size: 0.8rem;
}

.sticky-audio-bar {
  position: sticky;
  top: 70px;
  z-index: 90;
  background: rgba(27, 38, 34, 0.95);
  backdrop-filter: blur(10px);
  padding: 12px 18px;
  border-radius: 16px;
  display: grid;
  grid-template-columns: 180px 100px 200px 1fr;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  border: 1px solid rgba(255,255,255,0.1);
}

.audio-now-playing { display: flex; align-items: center; gap: 8px; }
.pulse-icon { width: 30px; height: 30px; border-radius: 50%; background: var(--primary-green); display: flex; align-items: center; justify-content: center; font-size: 0.8rem; }
.track-info { display: flex; flex-direction: column; font-size: 0.75rem; }

.audio-controls-center { display: flex; gap: 6px; }
.audio-btn { background: transparent; color: #ffffff; border: none; font-size: 0.85rem; cursor: pointer; width: 28px; height: 28px; border-radius: 50%; }
.audio-btn.play-main { background: var(--primary-yellow); color: #122922; }

.reciter-inline-wrapper {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.08);
  padding: 6px 12px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.icon-inline { color: var(--primary-yellow); font-size: 0.8rem; }

.reciter-select-inline {
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 600;
  outline: none;
  cursor: pointer;
  width: 100%;
}

.reciter-select-inline option { background: #111A17; color: #ffffff; }

.audio-progress-container { display: flex; align-items: center; gap: 8px; font-size: 0.75rem; }
.audio-progress-container input[type="range"] { flex: 1; accent-color: var(--primary-yellow); }

.reader-container {
  background: var(--dark-card);
  border-radius: 18px;
  padding: 24px;
  max-height: 550px;
  overflow-y: auto;
}

.bismillah-header {
  font-family: 'Amiri', serif;
  font-size: 1.8rem;
  color: var(--primary-yellow);
  text-align: center;
  margin-bottom: 20px;
}

.reader-verse-card {
  padding: 16px;
  background: rgba(255,255,255,0.02);
  border-radius: 12px;
  margin-bottom: 14px;
}

.reader-container .arabic-text-view { font-family: 'Amiri', serif; font-size: 1.8rem; text-align: right; direction: rtl; color: var(--reader-text); margin-bottom: 8px; line-height: 1.8; }
.reader-container .translation-text-view { font-size: 0.85rem; color: var(--reader-muted); }

/* ==========================================
   8. AZKAR & FOOTER
   ========================================== */
.azkar-section { padding: 50px 0; }
.azkar-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }

.azkar-card {
  background: var(--bg-card);
  padding: 20px;
  border-radius: 18px;
  border: 1px solid var(--border-light);
}

.azkar-card .arabic-text-view {
  font-family: 'Amiri', serif;
  font-size: 1.6rem;
  text-align: right;
  direction: rtl;
  color: var(--text-dark);
  margin: 12px 0 8px;
  line-height: 1.8;
}

.azkar-card .translation-text-view {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.azkar-tag {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--primary-green);
  background: rgba(0,107,84,0.1);
  padding: 4px 10px;
  border-radius: 50px;
}

.footer { background: #0B1210; color: #ffffff; padding: 40px 0 0; }
.footer-container { display: flex; justify-content: space-between; gap: 24px; margin-bottom: 24px; flex-wrap: wrap; }
.footer-brand { max-width: 400px; }
.footer-brand p { font-size: 0.85rem; color: rgba(255,255,255,0.6); margin-top: 10px; }
.footer-links-group { display: flex; gap: 36px; }
.footer-col h4 { font-size: 0.9rem; margin-bottom: 10px; }
.footer-col a { display: block; font-size: 0.8rem; color: rgba(255,255,255,0.6); margin-bottom: 6px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 14px 0; font-size: 0.75rem; color: rgba(255,255,255,0.4); text-align: center; }

/* ==========================================
   9. MOBILE & TABLET RESPONSIVE BREAKPOINTS
   ========================================== */

/* Tablets & Small Laptops (under 992px) */
@media (max-width: 992px) {
  .hero-content-grid {
    grid-template-columns: 1fr 1fr;
  }
  .hero-text-block {
    grid-column: span 2;
    padding-left: 0;
    margin-top: 10px;
  }
  .qibla-grid {
    grid-template-columns: 1fr;
  }
  .surah-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .prayer-cards-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .azkar-grid {
    grid-template-columns: 1fr;
  }
  .sticky-audio-bar {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .reciter-inline-wrapper, .audio-progress-container {
    grid-column: span 2;
  }
}

/* Mobile Devices (under 768px) */
@media (max-width: 768px) {
  .mobile-hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 65px;
    left: 0;
    right: 0;
    background: var(--bg-cream);
    flex-direction: column;
    padding: 20px;
    border-bottom: 1px solid var(--border-light);
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
    display: none;
  }

  .nav-links.open {
    display: flex;
  }

  .hero-content-grid {
    grid-template-columns: 1fr;
  }

  .hero-card {
    height: 220px;
  }

  .hero-card.img-card-2 {
    display: none; /* Hide 2nd image on small mobile screens */
  }

  .hero-text-block {
    grid-column: span 1;
  }

  .surah-grid {
    grid-template-columns: 1fr;
  }

  .prayer-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .filter-controls {
    flex-direction: column;
    align-items: stretch;
  }

  .sort-box {
    justify-content: flex-end;
  }

  .reader-header-box {
    flex-direction: column;
    align-items: flex-start;
  }

  .surah-player-controls {
    width: 100%;
    justify-content: space-between;
  }

  .sticky-audio-bar {
    grid-template-columns: 1fr;
    top: 60px;
  }

  .audio-now-playing, .audio-controls-center, .reciter-inline-wrapper, .audio-progress-container {
    grid-column: span 1;
  }

  .footer-container {
    flex-direction: column;
  }

  .footer-links-group {
    justify-content: space-between;
    width: 100%;
  }
}

/* Small Smart Phones (under 480px) */
@media (max-width: 480px) {
  .prayer-cards-grid {
    grid-template-columns: 1fr;
  }

  .reader-container .arabic-text-view {
    font-size: 1.5rem;
  }

  .bismillah-header {
    font-size: 1.5rem;
  }
}

/* ==========================================================================
   3. INFINITE HORIZONTAL TICKER LOOP ANIMATION
   ========================================================================== */
.ticker-container {
    background-color: var(--bg-card);
    border-radius: 32px;
    padding: 40px 0;
    overflow: hidden;
    transition: background-color 0.3s ease;
}

.ticker-wrap {
    width: 100%;
    overflow: hidden;
}

.ticker-move {
    display: inline-flex;
    white-space: nowrap;
    animation: ticker-loop 60s linear infinite;
}

.brand-item {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: var(--text-muted);
    padding: 0 40px;
    transition: color 0.3s ease;
    cursor: default;
}

.brand-item:hover {
    color: var(--text-primary);
}

@keyframes ticker-loop {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-50%, 0, 0); }
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn {
  padding: 8px 18px;
  border-radius: 20px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 0.9rem;
}

.btn-outline {
  border: 1.5px solid #00684a;
  color: #00684a;
  background: transparent;
}

.btn-outline:hover {
  background: rgba(0, 104, 74, 0.08);
}

.btn-primary {
  background: #00684a;
  color: #ffffff;
  border: 1.5px solid #00684a;
}

.btn-primary:hover {
  background: #00523a;
}

/* ================= SECTIONS & GRID ================= */
.content-section {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
}

.section-header {
  margin-bottom: 24px;
}

.section-header h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #004d36;
  margin-bottom: 6px;
}

.section-header p {
  color: #666;
  font-size: 0.95rem;
}

/* Grid Layout for Cards */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
  margin-bottom: 24px;
}

/* Card Container Styling */
.card {
  background: #fdfbf7;
  border: 1px solid #e2ded4;
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

/* Badges */
.badge {
  display: inline-block;
  align-self: flex-start;
  background-color: #e6f4f0;
  color: #00684a;
  font-weight: 600;
  font-size: 0.8rem;
  padding: 4px 12px;
  border-radius: 12px;
  margin-bottom: 16px;
}

.badge-dua {
  background-color: #eaf4fb;
  color: #1a6296;
}

/* Arabic Text Typography */
.arabic-text {
  font-family: 'Amiri', 'Traditional Arabic', serif;
  font-size: 1.4rem;
  line-height: 2.2;
  direction: rtl;
  text-align: right;
  color: #1f2937;
  margin-bottom: 16px;
  font-weight: 600;
}

/* Translation Text */
.translation {
  font-size: 0.9rem;
  color: #6b7280;
  line-height: 1.5;
}

/* Source Tag */
.source-tag {
  font-size: 0.75rem;
  color: #9ca3af;
  margin-top: 12px;
  font-style: italic;
}

/* Action Button Container */
.action-center {
  display: flex;
  justify-content: flex-start;
  margin-top: 16px;
}
/* Auth Modal Overlay */
.auth-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

/* Auth Modal Overlay */
.auth-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
}

/* Modal Box */
.auth-modal-content {
  background: #fdfbf7;
  padding: 30px;
  border-radius: 16px;
  width: 90%;
  max-width: 400px;
  position: relative;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  border: 1px solid #e2ded4;
}

.close-auth {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 1.5rem;
  cursor: pointer;
  color: #666;
}

.input-group {
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
}

.input-group label {
  font-weight: 600;
  margin-bottom: 6px;
  font-size: 0.9rem;
  color: #333;
}

.input-group input {
  padding: 10px 14px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  outline: none;
}

.input-group input:focus {
  border-color: #00684a;
}

.auth-toggle-text {
  margin-top: 16px;
  text-align: center;
  font-size: 0.9rem;
}