.elementor-2061 .elementor-element.elementor-element-2061.elementor-element{--flex-grow:1;--flex-shrink:0;}/* Start custom CSS for html, class: .elementor-element-2061 *//* --- Wrapper Principal --- */
.dash-wrapper {
    display: flex;
    flex-wrap: wrap; /* CRUCIAL : permet le passage à la ligne */
    gap: 30px; /* Gap réduit pour plus de flexibilité */
    padding: 20px; /* Padding réduit sur mobile */
    justify-content: center;
    align-items: flex-start;
    font-family: 'Segoe UI', sans-serif;
    
}

/* --- Cartes (Colonnes) --- */
.dash-card {
    background-color: #2d333e;
    border-radius: 12px;
    /* On utilise flex-basis pour la largeur de base, mais on autorise le redimensionnement */
    flex: 1 1 250px; 
    max-width: 300px; /* Évite que les colonnes ne deviennent trop larges sur grand écran */
    min-width: 240px; /* Sécurité pour mobile */
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* --- Header --- */
.dash-header {
    background-color: rgba(255,255,255,0.05);
    padding: 15px 20px;
    color: #ffffff;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

/* --- Listes --- */
.dash-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dash-list li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px; /* Légèrement plus aéré */
    color: #b0b3b8;
    text-decoration: none;
    font-size: 14px;
    border-bottom: 1px solid rgba(255,255,255,0.03);
    transition: all 0.2s ease-in-out;
}

.dash-list li:last-child a {
    border-bottom: none;
}

/* --- Interactions --- */
.dash-list li a:hover {
    background-color: rgba(255,255,255,0.04);
    color: #ffffff;
    padding-left: 25px;
}

.dash-list svg {
    color: #b0b3b8;
    transition: 0.2s;
    flex-shrink: 0; /* Empêche l'icône de s'écraser si le texte est long */
}

.dash-list li a:hover svg {
    color: #4a90e2; 
    transform: scale(1.1);
}

/* --- Media Queries pour fignoler --- */
@media (min-width: 1024px) {
    .dash-wrapper {
        gap: 60px; /* On augmente l'espace seulement sur grand écran */
        padding: 40px;
    }
}

@media (max-width: 600px) {
    .dash-card {
        max-width: 100%; /* Sur tout petit mobile, la carte prend toute la largeur */
    }
}/* End custom CSS */