/* /assets/css/theme.css */
/* Smooth transitions for theme switching */

* {
   transition-property: background-color, border-color, color, fill, stroke;
   transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
   transition-duration: 150ms;
}

/* Prevent transitions on page load to avoid flash */
.no-transition {
   transition: none !important;
}