@tailwind base;
@tailwind components;
@tailwind utilities;

html {
  scroll-behavior: smooth;
}

.faq-item {
  transition: max-height 0.3s ease-out;
  overflow: hidden;
}

.notyf__toast--custom-loading {
  background-color: #f3f4f6 !important; /* Tailwind gray-100 */
  color: #111827 !important; /* Tailwind gray-900 */
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
}

.spinner {
  width: 18px;
  height: 18px;
  border: 3px solid #ccc;
  border-top-color: #6366f1; /* Tailwind indigo-500 */
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
