/* ============================================================
   SOMMAIRE FLOTTANT — Version harmonisée avec resilience_hubs
   ============================================================ */

#sommaire-flottant {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: rgba(232, 243, 232, 0.95);
    border-top: 2px solid #2a6f2a;
    padding: 8px 10px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    backdrop-filter: blur(6px);
}

/* Liens */
#sommaire-flottant a {
    font-size: 14px;
    text-decoration: none;
    color: #2a6f2a;
    font-weight: bold;
    font-family: Arial, sans-serif;
}

#sommaire-flottant a:hover {
    color: #245a24;
    text-decoration: underline;
}

/* ============================================================
   VERSION MOBILE — sommaire horizontal en bas
   ============================================================ */
@media (max-width: 768px) {

    #sommaire-flottant {
        bottom: 0;
        top: auto;
        left: 0;
        right: 0;
        width: 100%;
        padding: 6px;
        display: flex;
        justify-content: space-around;
        align-items: center;
    }

    #sommaire-flottant a {
        font-size: 12px;
        padding: 0 4px;
    }
}
