/* Cache le bloc sur ordinateur */
.mobile-topbar-custom {
    display: none;
}

@media (max-width: 991px) {
    .mobile-topbar-custom {
        display: flex;
        flex-direction: column;
        align-items: center;
        background: #ffffff;
        padding: 10px;
        border-bottom: 1px solid #eee;
        width: 100%;
        font-family: 'Open Sans', sans-serif; /* Ou la police de ton thème */
    }

    .m-date { margin-bottom: 10px; }
    
    .m-label {
        background: red;
        color: white;
        padding: 2px 8px;
        border-radius: 4px;
        font-weight: bold;
        font-size: 13px;
        margin-right: 5px;
    }

    .m-value { font-size: 13px; color: #000; }

    /* Menu avec défilement horizontal */
    .m-topbar-menu {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-wrap: nowrap;
        overflow-x: auto;
        width: 100%;
        padding: 5px 0;
        -webkit-overflow-scrolling: touch;
    }

    .m-topbar-menu a {
        text-decoration: none;
        color: #000;
        font-weight: bold;
        font-size: 15px;
        padding: 0 5px;
    }

    /* Style du séparateur gris */
    .sep {
        color: #ccc;
        font-size: 12px;
        font-weight: normal;
    }

    .m-email {
        margin-top: 8px;
        font-size: 15px;
        color: #999;
    }
}