.data-search-presentation {
    width: 100vw;
    
    padding: 25px 9% !important;
}

.data-search-presentation #formResearch {
    background-color: #e6e6e6 !important;
    padding: 25px;
}

.data-search-presentation #formResearch h6 {
    color: #000;
}

.custom-form-label {
    margin-bottom: 0;
}

.resultat-elem {
    cursor: pointer;
    border-radius: 4px;
    padding: 12px;
    width: 100%;
    margin: 12px auto;
    background-color: #fff;
    box-shadow: 0 8px 12px rgba(18, 38, 63, 0.116);
}

.resultat-elem img {
    width: 100%;
    height: 125px;
    object-fit: cover;
}

.resultat-elem h6 {
    margin-top: 8px;
    margin-bottom: 0;
}

.resultat-elem .download {
    width: 100%;
    margin-top: 8px;
}

.resultat-elem h6 {
    color: #000;
    font-size: 14px;
}

.resultat-elem a.btn {
    font-size: 12px;
}

.resultats-box {
    overflow-y: scroll;
    height: 70vh;
    overflow-x: hidden;
    scrollbar-width: 2px;
    scrollbar-color: #14a538;
}
@media (max-width: 768px) {
    .resultats-box {
        height: auto; /* Ajuste la hauteur à 'auto' sur les petits écrans */
    }
}
.resultats-box::-webkit-scrollbar-thumb {
    color: #14a538;
    border-radius: 8px;
}
.resultats-box::-webkit-scrollbar {
    width: 5px;
    height: 8px;
    background-color: #aaa; /* or add it to the track */
  }
  
  /* Add a thumb */
.resultats-box::-webkit-scrollbar-thumb {
    background: #14a538;
}