.suggestions-container {
    position: relative;
}

#dqa_suggestions_list, #dqa_address_suggestions_list {
    /*position: absolute;*/
    z-index: 1000;
    width: 100%;
    /*border: 1px solid #ddd;*/
    border-top: none; /* Pour que la liste soit "collée" à l'input */
    background-color: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 4px; /* Bords arrondis en bas */

    max-height: 200px;
    overflow-y: auto;
}

.suggestion-item {
    color:#333;
    font-weight: 400;
    padding: 10px 12px;
    cursor: pointer;
    border-bottom: 1px solid #f0f0f0;
}

.suggestion-item:last-child {
    border-bottom: none;
}

.suggestion-item:hover {
    background-color: #f5f5f5;
}

.suggestion-item strong {
    font-weight: 700;
    color: #000;
}

.suggestion-line-1 {
    display: block;
    font-weight: 400;
    color: #333;
}

.suggestion-line-2 {
    display: block;
    font-size: 0.9em;
    color: #777;
}

/*.dqa-validation-message {*/
/*    margin-top: 5px;*/
/*}*/

.dqa-validation-message.dqa-warning {
    color: #c64117;
    margin-top: 8px;
}

.dqa-validation-message.dqa-warning-pass {
    color: #D83200;
    margin-top: 8px;
}
