﻿/* ============ barre de recherche ============ */

#BarRecherche {
    width: 100%;
    display: flex;
    height: 70px;
    flex-direction: column;
    padding: 10px;
    border-radius: 40px;
    backdrop-filter: blur(10px);
    
}

#sugg {
    margin-bottom: 5px;
    width: 100%;
    height: 200px;
    display: block;
    transition: opacity 0.3s ease-in-out;
    overflow: hidden;

}

#userInput {
    background-color: white;
    color: black;
    
}
    #userInput::placeholder {
    font-weight: bold;
    opacity: 0.9;
    color: #000;
}

#SuggestionMot {
    position: absolute;
    background: white;
    border: 2px solid #ccc;
    list-style: none;
    padding: 5px;
    border-radius: 10px;
    margin: 0;
    width: 90%;
    max-height: 200px;
    overflow-y: auto;
    z-index: 999;
}

#SuggestionMot li {
  padding: 6px;
  cursor: pointer;
}

#SuggestionMot li:hover, #SuggestionMot li.suggestion-focused {
  background-color: #bdbdbd; /* Couleur du fond de la suggestion des mots */
}

#file-upload {
    position: absolute;
    display: none;
}

#resizer {
    display: none;
    margin-left: 0px;
    overflow: hidden;
    width: 7px; /* Largeur de la barre*/
    cursor: ew-resize; /* Curseur indiquant le redimensionnement horizontal */
    background: darkgray; /* Couleur de la barre */
}

textarea {
    display: flex;
    overflow: hidden;
    width: 100%;
    height: 50px;
    padding: 13px;
    box-sizing: border-box;
    border: 2px solid #ccc;
    border-radius: 50px;
    background-color: #f8f8f8; /* Couleur de fond de la barre de recherche */
    font-size: 15px;
    color: black;
    resize: none;
    background-image: url("images/loupe.png");
    background-repeat: no-repeat;
    background-position: 300px center;
}



/* ============ barre de recherche// ============ */
