@media screen and (max-width: 768px) {
    .header_titre a {
        font-size: 18px;
        display: none;
    }
    
    .tableaudetail {
        width: calc(100% - 10px);
        max-height: fit-content;
        margin-left: 5px;
        margin-right: 5px;
    }

    #chantiers {
        overflow-y: scroll;
    }
    
    #chantiers::-webkit-scrollbar {
        width: 10px;
    }
    
    #chantiers::-webkit-scrollbar-track {
        background: rgba(21, 114, 185, 1);
    }
    
    #chantiers::-webkit-scrollbar-thumb {
        background-color: white;
        border-radius: 20px;
        border: 4px solid rgba(21, 114, 185, 1);
    }
    
    .leschantiers {
        overflow-y: hidden;
    }

    #logo_articles {
        display: none;
    }
}