/* الأذكار — نفس ألوان المشروع (أخضر داكن + ذهبي) */

#azkar-section,
#favorite-azkar-section {
  background: linear-gradient(180deg, rgba(6, 26, 20, 0.35) 0%, rgba(10, 47, 36, 0.25) 100%);
  border-top: 1px solid rgba(201, 162, 39, 0.2);
}

#azkar-section .section-title h2,
#favorite-azkar-section .section-title h2 {
  font-family: "Tajawal", sans-serif;
  font-weight: 800;
  color: #e8c547;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

#azkar-section .section-title p {
  color: rgba(245, 240, 230, 0.75);
  font-size: 1.05rem;
}

#azkar-category-buttons .btn {
  font-family: "Tajawal", sans-serif;
  border-radius: 10px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

#azkar-category-buttons .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(201, 162, 39, 0.25);
}

#azkar-category-buttons .btn.active {
  background: linear-gradient(135deg, #c9a227 0%, #e8c547 100%);
  color: #0a2f24 !important;
  border-color: #e8c547 !important;
  font-weight: 700;
}

#azkar-search {
  font-family: "Tajawal", sans-serif;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(201, 162, 39, 0.35);
  color: #f5f0e6;
  border-radius: 12px;
  padding: 0.75rem 1rem;
}

#azkar-search::placeholder {
  color: rgba(245, 240, 230, 0.45);
}

#azkar-search:focus {
  background: rgba(255, 255, 255, 0.12);
  border-color: #c9a227;
  color: #f5f0e6;
  box-shadow: 0 0 0 0.2rem rgba(201, 162, 39, 0.25);
}

#azkar-loading {
  font-family: "Tajawal", sans-serif;
  color: rgba(245, 240, 230, 0.75);
  animation: azkarPulse 1.2s ease-in-out infinite;
}

@keyframes azkarPulse {
  0%,
  100% {
    opacity: 0.65;
  }
  50% {
    opacity: 1;
  }
}

#azkar-error {
  font-family: "Tajawal", sans-serif;
  font-size: 1.1rem;
}

.azkar-card {
  background: linear-gradient(145deg, rgba(20, 90, 69, 0.45) 0%, rgba(10, 47, 36, 0.9) 100%);
  border: 1px solid rgba(201, 162, 39, 0.28);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  animation: azkarCardIn 0.45s ease forwards;
  opacity: 0;
}

@keyframes azkarCardIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.azkar-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
  border-color: rgba(201, 162, 39, 0.5);
}

.azkar-card .card-body {
  font-family: "Tajawal", sans-serif;
}

.azkar-text {
  font-size: 1.05rem;
  line-height: 1.85;
  color: #f5f0e6;
  text-align: right;
}

.azkar-meta {
  font-size: 0.9rem;
  color: rgba(245, 240, 230, 0.7);
}

.azkar-meta .azkar-repeat-label {
  color: #e8c547;
  font-weight: 600;
}

.azkar-desc {
  font-size: 0.92rem;
  color: rgba(245, 240, 230, 0.8);
  border-right: 3px solid rgba(201, 162, 39, 0.45);
  padding-right: 0.75rem;
  margin-top: 0.75rem;
}

.azkar-ref {
  font-size: 0.85rem;
  color: rgba(201, 162, 39, 0.85);
  margin-top: 0.5rem;
}

.azkar-actions .btn {
  font-size: 0.85rem;
  border-radius: 10px;
}

.azkar-btn-copy {
  border-color: rgba(201, 162, 39, 0.5);
  color: #f5f0e6;
}

.azkar-btn-copy:hover {
  background: rgba(201, 162, 39, 0.2);
  color: #e8c547;
}

.azkar-btn-fav.active {
  background: rgba(201, 162, 39, 0.25);
  border-color: #e8c547;
  color: #e8c547;
}

.azkar-counter-btn {
  min-width: 8rem;
  font-weight: 600;
}

.azkar-counter-btn.is-done {
  pointer-events: none;
}

.azkar-done-msg {
  font-size: 0.9rem;
  color: #a3e635;
  font-weight: 600;
  margin-top: 0.5rem;
  animation: azkarFadeIn 0.4s ease;
}

@keyframes azkarFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

#azkar-container .col,
#favorite-azkar-container .col {
  animation-delay: calc(var(--azkar-stagger, 0) * 0.04s);
}

.azkar-empty {
  text-align: center;
  padding: 2rem;
  color: rgba(245, 240, 230, 0.6);
  font-family: "Tajawal", sans-serif;
}

#azkarToast .toast-body {
  font-family: "Tajawal", sans-serif;
  font-weight: 600;
}
