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

/* Disable transitions during theme switch to prevent flickering */
[data-theme-changing] * {
  transition: none !important;
}

/* img[x-data*="themeImage"] {
  transition: opacity 0.3s ease;
} */

/* Prevent flickering during theme switch */
/* [data-theme-changing] img[x-data*="themeImage"] {
  transition: none;
} */