/* *****************************************************

    ** Custom Stylesheet **

    Any custom styling you want to apply should be
    defined here.

***************************************************** */
/* Stil pentru containerul de sugestii */
#suggestions-container {
    position: absolute;
    background-color: #fff;
    border: 1px solid #ccc;
    width: 100%;
    max-height: 300px;
    overflow-y: auto;
    z-index: 1000;
    display: none; /* Inițial ascuns */
}

#suggestions-container .suggestion-item {
    padding: 10px;
    cursor: pointer;
}

#suggestions-container .suggestion-item:hover {
    background-color: #f0f0f0;
}
