/**
 * Flatboard 5 - Styles inline pour le thème sombre
 * Appliquer le thème sombre immédiatement si nécessaire
 */

/* Appliquer le thème sombre immédiatement si nécessaire */
html[data-theme="dark"] {
    --bg-primary: #1a1a1a;
    --bg-secondary: #121212;
    --bg-tertiary: #2a2a2a;
    --bg-dark: #0d0d0d;
    --bg-darker: #050505;
    --text-primary: #e0e0e0;
    --text-secondary: #b0b0b0;
    --text-light: #808080;
    --text-muted: #606060;
    --border-color: #333333;
    --border-color-light: #2a2a2a;
    --border-color-dark: #404040;
}

html[data-theme="dark"] body {
    background-color: var(--bg-secondary) !important;
    color: var(--text-primary) !important;
}

html[data-theme="dark"] .container,
html[data-theme="dark"] .container-fluid {
    background-color: transparent !important;
}

html[data-theme="dark"] main {
    background-color: var(--bg-secondary) !important;
}





