/* daisyUI's base ::details-content height is 0, but its open height rule is
   inside prefers-reduced-motion:no-preference. Opening must also work when
   the OS disables animations. Keep this functional rule outside media queries. */
details.collapse[open]::details-content {
  height: auto;
  overflow: visible;
}

/* The disclosure state indicator is functional even without animation. */
details.collapse[open].collapse-arrow > .collapse-title::after {
  transform: translateY(-50%) rotate(225deg);
}
