/*
 * This is a manifest file that'll be compiled into application.css.
 *
 * With Propshaft, assets are served efficiently without preprocessing steps. You can still include
 * application-wide styles in this file, but keep in mind that CSS precedence will follow the standard
 * cascading order, meaning styles declared later in the document or manifest will override earlier ones,
 * depending on specificity.
 *
 * Consider organizing styles into separate files for maintainability.
 */

/* View Transitions — quiz step slides */
@keyframes vt-slide-in-right {
  from { opacity: 0; transform: translateX(24px); }
}
@keyframes vt-slide-out-left {
  to   { opacity: 0; transform: translateX(-24px); }
}

::view-transition-old(root) {
  animation: 180ms ease-in vt-slide-out-left;
}
::view-transition-new(root) {
  animation: 220ms ease-out vt-slide-in-right;
}

/* Hide default details marker in all browsers */
summary.list-none::-webkit-details-marker { display: none; }
