/* ============================================
   Theme Variants
   Automatic dark/light theme based on system preference
   ============================================ */

/* Theme is automatically applied via prefers-color-scheme in style.css */
/* This file is reserved for any additional theme-specific overrides */

/* Ensure smooth transitions when theme changes */
* {
    transition-property: background-color, color, border-color, box-shadow;
    transition-duration: 0.3s;
    transition-timing-function: ease;
}

/* Override for elements that shouldn't transition */
svg,
img,
video {
    transition: none;
}
