/**
 * Theme-agnostic base styles
 * Applied to all themes
 */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.4;
    overflow: hidden;
}

/* Smooth transitions for theme changes */
* {
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

/* Disable transitions for interactive elements */
*:focus,
*:hover,
input,
textarea,
select {
    transition: none;
}
