/* ====================================
   Variables Communes Themes
   ==================================== */

/* Variables de base heritees du Design System principal */
:root {
    /* Ces variables seront surchargees par chaque theme */
    --theme-bg-primary: #ffffff;
    --theme-bg-secondary: #f5f5f7;
    --theme-text-primary: #1a1a1a;
    --theme-text-secondary: #6b6f80;
    --theme-border-color: #e3e4e9;
    --theme-card-bg: #ffffff;
    --theme-sidebar-bg: #1a1a2e;
    --theme-sidebar-text: #ffffff;
    --theme-accent: #705ec8;
}

/* Transitions pour changement de theme fluide */
body {
    transition:
        background-color 0.3s ease,
        color 0.3s ease;
}

.theme-transition * {
    transition:
        background-color 0.3s ease,
        color 0.3s ease,
        border-color 0.3s ease !important;
}
