﻿/* ============ 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;

}

#SuggestionMot {
  position: absolute;
  background: white;
  border: 1px solid #ccc;
  list-style: none;
  padding: 5px;
  border-radius: 8px;
  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: #f0f0f0;
}

#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: 12px;
    box-sizing: border-box;
    border: 2px solid #ccc;
    border-radius: 50px;
    background-color: #f8f8f8;
    font-size: 16px;
    resize: none;
    background-image: url("images/loupe.png");
    background-repeat: no-repeat;
    background-position: 300px center;
}

/* ============ barre de recherche// ============ */
