/* LabRequestDetailPanel — slide-in animation. Dark mode is handled by Tailwind dark:
   utilities in the markup (no dark CSS here). @keyframes de-escaped from @@keyframes. */
.panel-slide-in {
    animation: panelSlideInRight 0.3s ease-out;
}
@keyframes panelSlideInRight {
    from { transform: translateX(100%); }
    to { transform: translateX(0); }
}
