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

:root {
  --green: #1D9E75;
  --green-light: #E1F5EE;
  --amber: #BA7517;
  --amber-light: #FAEEDA;
  --blue: #185FA5;
  --blue-light: #E6F1FB;
  --pink: #993556;
  --pink-light: #FBEAF0;
  --teal: #0F6E56;
  --teal-light: #E1F5EE;
  --gray: #5F5E5A;
  --gray-light: #F1EFE8;
  --purple: #7B4397;
  --purple-light: #F0E8FB;

  --cat-green: #9FE1CB;
  --cat-amber: #FAC775;
  --cat-blue: #B5D4F4;
  --cat-pink: #F4C0D1;
  --cat-teal: #9FE1CB;
  --cat-gray: #D3D1C7;

  --gold: #C4A35A;
  --gold-light: #F9F4E8;
  --ink: #1A1917;
  --ink-muted: #5F5E5A;
  --surface: #FDFCF8;
  --surface-2: #F5F2EA;
  --border: rgba(0,0,0,0.08);
  --border-strong: rgba(0,0,0,0.14);
  --shadow-soft: 0 2px 16px rgba(0,0,0,0.07);
  --shadow-card: 0 4px 24px rgba(0,0,0,0.09);
  --radius: 16px;
  --radius-sm: 10px;
  --font-serif: 'Amiri', serif;
  --font-body: 'IBM Plex Sans Arabic', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: linear-gradient(135deg, var(--surface) 0%, #F9F8F5 100%);
  color: var(--ink);
  min-height: 100vh;
  direction: rtl;
  overflow-x: hidden;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: #0D1B2A;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 20% 80%, rgba(29,158,117,0.15) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 80% 20%, rgba(196,163,90,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 80% 60% at 50% 50%, rgba(24,95,165,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1px 1px at 15% 25%, rgba(255,255,255,0.6) 0%, transparent 0%),
    radial-gradient(1px 1px at 45% 15%, rgba(255,255,255,0.5) 0%, transparent 0%),
    radial-gradient(1.5px 1.5px at 70% 35%, rgba(255,255,255,0.7) 0%, transparent 0%),
    radial-gradient(1px 1px at 85% 60%, rgba(255,255,255,0.4) 0%, transparent 0%),
    radial-gradient(1px 1px at 30% 70%, rgba(255,255,255,0.5) 0%, transparent 0%),
    radial-gradient(1px 1px at 60% 80%, rgba(255,255,255,0.4) 0%, transparent 0%),
    radial-gradient(1px 1px at 90% 15%, rgba(255,255,255,0.6) 0%, transparent 0%),
    radial-gradient(1px 1px at 10% 50%, rgba(255,255,255,0.4) 0%, transparent 0%),
    radial-gradient(1px 1px at 55% 55%, rgba(255,255,255,0.3) 0%, transparent 0%);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
  position: relative;
  z-index: 10;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-serif);
  font-size: 20px;
  color: #F5F0E8;
  font-weight: 700;
}

.nav-icon { font-size: 22px; color: var(--gold); }

.btn-nav {
  background: rgba(196,163,90,0.15);
  border: 1px solid rgba(196,163,90,0.4);
  color: #F5D78E;
  padding: 10px 20px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s;
}
.btn-nav:hover {
  background: rgba(196,163,90,0.25);
  border-color: rgba(196,163,90,0.6);
}

.hero-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 24px;
  position: relative;
  z-index: 5;
}

.hero-eyebrow {
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  font-weight: 500;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(56px, 10vw, 100px);
  line-height: 1.05;
  color: #F5F0E8;
  margin-bottom: 24px;
  font-weight: 700;
}
.hero-title em { font-style: italic; color: var(--gold); }

.hero-sub {
  font-size: 18px;
  color: rgba(245,240,232,0.6);
  margin-bottom: 40px;
  max-width: 360px;
  line-height: 1.7;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-bottom: 36px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 100px;
  padding: 14px 32px;
  backdrop-filter: blur(10px);
  animation: slideUp 0.6s ease 0.2s both;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.stat { text-align: center; }
.stat-num {
  display: block;
  font-size: 28px;
  font-weight: 600;
  color: #F5D78E;
  font-variant-numeric: tabular-nums;
}
.stat-label { font-size: 12px; color: rgba(245,240,232,0.5); }
.stat-divider { width: 1px; height: 32px; background: rgba(255,255,255,0.15); }

.btn-primary {
  background: linear-gradient(135deg, #C4A35A 0%, #E8C97A 50%, #C4A35A 100%);
  color: #0D1B2A;
  border: none;
  padding: 18px 42px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 6px 24px rgba(196,163,90,0.35);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 36px rgba(196,163,90,0.45);
}
.btn-primary:active {
  transform: translateY(-1px);
}

.scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: rgba(245,240,232,0.3);
  font-size: 12px;
  animation: float 2s ease-in-out infinite;
  z-index: 5;
}

@keyframes float {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ===== FILTER BAR ===== */
.filter-bar {
  background: white;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 12px rgba(0,0,0,0.06);
}

.filter-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 12px;
  padding-bottom: 12px;
}

.filter-tabs {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  scrollbar-width: none;
}
.filter-tabs::-webkit-scrollbar { display: none; }

.filter-tab {
  background: white;
  border: 2px solid var(--border);
  color: var(--ink-muted);
  padding: 8px 18px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.25s ease;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}
.filter-tab:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(196,163,90,0.15);
}
.filter-tab.active {
  background: linear-gradient(135deg, #1D9E75 0%, #0F6E56 100%);
  border-color: #1D9E75;
  color: white;
  box-shadow: 0 4px 16px rgba(29,158,117,0.3);
  transform: translateY(-2px);
}

.sort-select {
  border: 2px solid var(--border);
  background: white;
  color: var(--ink-muted);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  outline: none;
  transition: all 0.25s ease;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}
.sort-select:hover {
  border-color: var(--gold);
  box-shadow: 0 4px 8px rgba(196,163,90,0.15);
}
.sort-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(196,163,90,0.12);
}

/* ===== MAIN ===== */
.main-content { padding: 48px 0 80px; min-height: 50vh; }

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

/* ===== PRAYER CARD ===== */
.prayer-card {
  background: linear-gradient(135deg, white 0%, #FAFAF8 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  animation: fadeUp 0.4s ease both;
  position: relative;
  overflow: hidden;
}
.prayer-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(180deg, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.prayer-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.12);
}
.prayer-card:hover::before {
  opacity: 1;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

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

.card-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 600;
  color: white;
  flex-shrink: 0;
}

.card-meta { flex: 1; display: flex; flex-direction: column; gap: 2px; }
.card-name { font-weight: 600; font-size: 15px; }
.card-time { font-size: 12px; color: var(--ink-muted); }

.card-cat {
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 100px;
  font-weight: 500;
  white-space: nowrap;
}
.cat-green { background: var(--green-light); color: var(--teal); }
.cat-amber { background: var(--amber-light); color: var(--amber); }
.cat-blue { background: var(--blue-light); color: var(--blue); }
.cat-pink { background: var(--pink-light); color: var(--pink); }
.cat-teal { background: var(--teal-light); color: var(--teal); }
.cat-gray { background: var(--gray-light); color: var(--gray); }

.card-text {
  font-family: var(--font-serif);
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--surface-2);
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  border-right: 3px solid var(--gold);
  font-style: italic;
}

.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}

.dua-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: white;
  border: 2px solid var(--border-strong);
  border-radius: 100px;
  padding: 10px 18px;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-muted);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
}
.dua-btn:hover:not(.duaed) {
  background: var(--green-light);
  border-color: var(--green);
  color: var(--teal);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(29,158,117,0.25);
}
.dua-btn.duaed {
  background: linear-gradient(135deg, var(--green-light) 0%, #D5F0E8 100%);
  border-color: var(--green);
  color: var(--teal);
  cursor: default;
  box-shadow: 0 2px 8px rgba(29,158,117,0.15);
}
.dua-count {
  background: white;
  border-radius: 100px;
  padding: 2px 8px;
  font-weight: 600;
  font-size: 12px;
  color: var(--ink);
}
.dua-btn.duaed .dua-count { background: rgba(29,158,117,0.15); color: var(--teal); }

.card-ameen {
  font-family: var(--font-serif);
  font-size: 15px;
  color: var(--gold);
  font-style: italic;
}

/* ===== LOADING ===== */
.loading-state {
  grid-column: 1/-1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 80px 0;
  color: var(--ink-muted);
}
.loader {
  width: 36px;
  height: 36px;
  border: 3px solid var(--border);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ===== EMPTY STATE ===== */
.empty-state {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 100px 0;
  color: var(--ink-muted);
  text-align: center;
}
.empty-icon { font-size: 48px; }
.empty-state p { font-size: 17px; font-weight: 500; }
.empty-sub { font-size: 14px; color: #aaa; }

/* ===== FOOTER ===== */
.footer {
  background: #0D1B2A;
  color: rgba(245,240,232,0.4);
  text-align: center;
  padding: 28px 24px;
  font-size: 13px;
}
.footer strong { color: var(--gold); }

/* ===== MODAL ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(13,27,42,0.8);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 16px;
}
.modal-overlay.active { opacity: 1; pointer-events: all; }

.modal {
  background: linear-gradient(135deg, var(--surface) 0%, #F9F8F5 100%);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius);
  width: 100%;
  max-width: 480px;
  padding: 32px 28px;
  position: relative;
  box-shadow: 0 24px 64px rgba(0,0,0,0.25);
  transform: translateY(20px);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  animation: modalSlideUp 0.3s ease;
}
.modal-overlay.active .modal { transform: translateY(0); }

@keyframes modalSlideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.modal-close {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--surface-2);
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 14px;
  color: var(--ink-muted);
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-close:hover { background: var(--border-strong); }

.modal-header { text-align: center; margin-bottom: 28px; }
.modal-icon { font-size: 32px; display: block; margin-bottom: 8px; }
.modal-header h2 { font-family: var(--font-serif); font-size: 26px; margin-bottom: 6px; }
.modal-header p { font-size: 14px; color: var(--ink-muted); }

.field { margin-bottom: 20px; }
.field label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-muted);
  margin-bottom: 8px;
}

.field input,
.field textarea {
  width: 100%;
  background: white;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s;
  resize: none;
  direction: rtl;
}
.field input:focus,
.field textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(196,163,90,0.12);
}

.char-count {
  display: block;
  text-align: left;
  font-size: 12px;
  color: var(--ink-muted);
  margin-top: 4px;
}

.category-grid { display: flex; flex-wrap: wrap; gap: 8px; }

.cat-btn {
  background: white;
  border: 2px solid var(--border-strong);
  padding: 10px 16px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  color: var(--ink-muted);
  transition: all 0.25s ease;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}
.cat-btn:hover { 
  border-color: var(--gold); 
  color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(196,163,90,0.15);
}
.cat-btn.active { 
  background: linear-gradient(135deg, #1D9E75 0%, #0F6E56 100%);
  border-color: #1D9E75;
  color: white;
  box-shadow: 0 4px 12px rgba(29,158,117,0.25);
}

.btn-submit {
  width: 100%;
  background: linear-gradient(135deg, #C4A35A 0%, #E8C97A 50%, #C4A35A 100%);
  color: #0D1B2A;
  border: none;
  padding: 16px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  margin-top: 12px;
  box-shadow: 0 4px 16px rgba(196,163,90,0.25);
}
.btn-submit:hover {
  box-shadow: 0 6px 24px rgba(196,163,90,0.4);
  transform: translateY(-2px);
}
.btn-submit:active {
  transform: translateY(0);
}

/* ===== TOAST ===== */
.toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: #0D1B2A;
  color: #F5D78E;
  padding: 12px 24px;
  border-radius: 100px;
  font-size: 14px;
  opacity: 0;
  transition: all 0.3s;
  z-index: 9999;
  pointer-events: none;
  white-space: nowrap;
  border: 1px solid rgba(196,163,90,0.3);
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 640px) {
  .nav { padding: 16px 18px; }
  .nav-actions { flex-wrap: wrap; justify-content: center; gap: 10px; }
  .hero { min-height: 80vh; }
  .hero-content { padding: 32px 16px; }
  .hero-sub { max-width: 100%; font-size: 16px; }
  .hero-stats { flex-direction: column; align-items: stretch; gap: 14px; padding: 16px 18px; }
  .hero-stats .stat { width: 100%; }
  .cards-grid { grid-template-columns: 1fr; gap: 16px; }
  .filter-bar .container { flex-direction: column; align-items: stretch; gap: 12px; }
  .filter-tabs { flex-wrap: wrap; gap: 8px; }
  .sort-wrap { width: 100%; }
  .sort-select { width: 100%; }
  .modal { width: min(100%, 540px); margin: 20px; }
  .modal-body { padding: 20px; }
  .btn-nav, .btn-primary, .btn-submit { width: 100%; max-width: 100%; }
  .category-grid { flex-wrap: wrap; }
  .admin-card { padding: 16px; }
  .admin-actions { flex-direction: column; align-items: stretch; }
}

/* ===== AUDIO CONTROL ===== */
.audio-control {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 999;
}

#audioToggle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, #E8C97A 100%);
  border: none;
  color: #0D1B2A;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(196,163,90,0.4);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  opacity: 1;
  transform: scale(1);
}

#audioToggle:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(196,163,90,0.5);
}

#audioToggle:active {
  transform: scale(0.95);
}

@media (max-width: 640px) {
  .audio-control {
    bottom: 24px;
    right: 24px;
  }

  #audioToggle {
    width: 48px;
    height: 48px;
    font-size: 20px;
  }
}

/* ===== AUTHENTICATION STYLES ===== */
.nav-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}

.auth-form {
  display: none;
}

.auth-form.active {
  display: block;
  animation: slideIn 0.3s ease;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.auth-toggle {
  text-align: center;
  margin-top: 16px;
  font-size: 14px;
  color: var(--ink-muted);
}

.auth-toggle a {
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
  cursor: pointer;
  transition: color 0.2s;
}

.auth-toggle a:hover {
  color: var(--green);
}

.password-hint {
  display: block;
  font-size: 12px;
  color: var(--ink-muted);
  margin-top: 4px;
}

.password-hint.strong {
  color: var(--green);
}

.password-hint.weak {
  color: #E53935;
}

.verification-hint {
  display: block;
  font-size: 12px;
  color: var(--ink-muted);
  margin-top: 4px;
}

/* User Profile Display */
.user-profile {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #F5F0E8;
}

.user-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--green) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 14px;
  color: #0D1B2A;
}

.user-name {
  font-size: 14px;
  max-width: 150px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Loading State */
.loading-text {
  display: inline-block;
  animation: dots 1.4s infinite;
}

@keyframes dots {
  0%, 20% { content: '.'; }
  40% { content: '..'; }
  60%, 100% { content: '...'; }
}

/* Submission Counter */
.submission-limit {
  font-size: 12px;
  color: var(--ink-muted);
  margin-top: 8px;
  text-align: center;
}

.submission-limit.warning {
  color: #E8920E;
}

.submission-limit.reached {
  color: #E53935;
}

@media (max-width: 768px) {
  .nav-actions {
    gap: 8px;
  }

  .btn-nav {
    padding: 8px 16px;
    font-size: 13px;
  }

  .user-name {
    display: none;
  }
}

.admin-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 18px;
  margin-bottom: 16px;
  box-shadow: var(--shadow-card);
}

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

.admin-category {
  font-size: 13px;
  color: var(--ink-muted);
}

.admin-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: var(--ink-muted);
}

.admin-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.admin-actions .btn-nav {
  min-width: 110px;
  padding: 10px 16px;
  color: white;
  border: none;
}

.approve-btn { background: var(--green); }
.reject-btn { background: #d64545; }
