/* Style minimal DSFR pour minibando centré en haut de page */

#minibando {
    font-family: "Marianne", Arial, sans-serif;
    font-size: 0.875rem;
    background-color: var(--background-alt-blue-france);
    color: var(--text-label-blue-france);
    border-bottom: 1px solid var(--border-default-grey);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);

    width: 100%;

    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;

    display: flex;
    justify-content: center;
    align-items: center;

    height: 2.5rem;
    border-radius: 0 0 0.5rem 0.5rem;
}

/* Liens sans padding, mais avec survol DSFR */
#minibando a {
    text-decoration: none;
    color: var(--text-label-blue-france);
    border-radius: 0.25rem;
    transition: background-color 0.2s;
}

#minibando a:hover,
#minibando a:focus {
    background-color: var(--hover-tile);
    color: var(--text-title-grey);
    outline: 2px solid transparent;
    outline-offset: 2px;
}

/* Décalage du contenu de la page pour ne pas être masqué */
body.session_connectee {
    margin-top: 3rem;
}
