/* Clean Islamic Minimalist Styling for Sakina */
:root {
  --primary-blue: #1D4ED8;
  --sky-tint: #E0F2FE;
}

body {
  background-color: #F8FAFC;
  background-image: radial-gradient(#E2E8F0 0.8px, transparent 0.8px);
  background-size: 20px 20px;
  -webkit-tap-highlight-color: transparent;
}

/* Custom Scrollbars */
::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
::-webkit-scrollbar-track {
  background: transparent;
}
::-webkit-scrollbar-thumb {
  background: #CBD5E1;
  border-radius: 9999px;
}

/* Hide scrollbars for pill strips */
.no-scrollbar::-webkit-scrollbar {
  display: none;
}
.no-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* Modal Animation */
@keyframes slideUpModal {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.animate-slideUp {
  animation: slideUpModal 0.28s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Prayer Card Active Glow */
.prayer-card-active {
  border-color: #38BDF8 !important;
  background: linear-gradient(135deg, #EFF6FF 0%, #FFFFFF 100%) !important;
  box-shadow: 0 4px 14px -2px rgba(56, 189, 248, 0.25) !important;
}

/* Nav Tab Active State */
.nav-tab-btn.active {
  color: #1D4ED8;
  font-weight: 800;
}
.nav-tab-btn.active svg {
  transform: translateY(-2px);
  transition: transform 0.2s ease;
}

/* Pulse on click for tasbeeh counter */
.tasbeeh-ripple {
  animation: tasbeehScale 0.15s ease-out;
}
@keyframes tasbeehScale {
  0% { transform: scale(0.96); }
  50% { transform: scale(1.02); }
  100% { transform: scale(1); }
}