/* Small touches on top of the Tailwind CDN theme. */

.book-cover-fallback {
  background: linear-gradient(135deg, #b5654a 0%, #8f4d38 100%);
}

/* Modal backdrop + dialog animation */
.modal-backdrop {
  animation: fade-in 0.15s ease-out;
}
.modal-card {
  animation: pop-in 0.18s ease-out;
}
@keyframes fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes pop-in {
  from { opacity: 0; transform: translateY(8px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

/* HTMX request feedback */
.htmx-request.htmx-indicator { opacity: 1; }
.htmx-indicator { opacity: 0; transition: opacity 0.2s; }
