﻿/* ============ barre de recherche ============ */

#userInput {
    font-size: 0.9rem;
    display: block;
    max-width: 100%;    
    color: black;
    
    background-size: 20px 20px;
    background-position: 220px;
}

#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: 20px;
    margin: 0;
    width: 90%;
    max-height: 200px;
    overflow-y: auto;
    z-index: 10;
}

#SuggestionMot li {
  padding: 6px;
  cursor: pointer;
}

/* ============ barre de recherche// ============ */
