:root {
    /* Couleurs principales */
    --primary: #3b82f6;          /* Bleu vif mais doux */
    --primary-dark: #2563eb;
    --secondary: #6b7280;        /* Gris neutre */
    --danger: #ef4444;            /* Rouge pour actions destructives */
    --danger-dark: #dc2626;
    
    /* Fond et texte */
    --bg: #f9fafb;                /* Fond légèrement grisé */
    --bg-card: #ffffff;
    --text: #111827;              /* Texte principal très foncé */
    --text-light: #6b7280;        /* Texte secondaire */
    --border: #e5e7eb;             /* Couleur de bordure */
    
    /* Espacements (base 4px) */
    --space-1: 4px;
    --space-2: 8px;
    --space-3: 12px;
    --space-4: 16px;
    --space-5: 20px;
    --space-6: 24px;
    --space-8: 32px;
    --space-10: 40px;
    
    /* Bordures arrondies */
    --radius-button: 12px;
    --radius-card: 20px;
    --radius-input: 10px;
    --radius-modal: 24px;
    
    /* Ombres */
    --shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 4px 12px rgba(0, 0, 0, 0.1);
    
    /* Transitions */
    --transition: 0.2s ease;
}