@import url('https://fonts.googleapis.com/css2?family=Merriweather:ital,wght@0,300;0,400;0,700;1,400&family=Lato:wght@300;400;700&display=swap');

/* Custom scrollbar for modal */
.custom-scrollbar::-webkit-scrollbar {
  width: 8px;
}
.custom-scrollbar::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 4px;
}
.custom-scrollbar::-webkit-scrollbar-thumb {
  background: #c1c1c1;
  border-radius: 4px;
}
.custom-scrollbar::-webkit-scrollbar-thumb:hover {
  background: #a8a8a8;
}

/* Card hover effects */
.belief-card {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.belief-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}

/* Modal animation classes */
#modal.open {
  opacity: 1;
  pointer-events: auto;
}
#modal.open #modalContent {
  transform: scale(100%);
}

.verse-chip {
  transition: all 0.2s;
}
/* Only apply scale on hover, let Tailwind handle colors */
.verse-chip:hover {
  transform: scale(1.05);
}

/* Markdown-like styling for AI response */
#aiChatResponse p, #verseTextContent p {
  margin-bottom: 0.5rem;
}
#aiChatResponse ul {
  list-style-type: disc;
  padding-left: 1.2rem;
  margin-bottom: 0.5rem;
}
#aiChatResponse strong {
  font-weight: 600;
  color: #0f172a;
}
