#addressToComplete{
    border-top-right-radius: 0.375rem;
    border-top-left-radius: 0.375rem;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}
#addressToComplete:focus, #addressToComplete:focus, #addressToComplete:focus {
    box-shadow: none !important;
    outline: none !important;    
}
#suggestions {
    position: absolute;
    background-color: white;
    width: 100%;
    z-index: 10000;
    max-height: 200px;
    overflow-y: auto;
}

.suggestion-item {
    padding: 10px;
    border: 1px solid #ddd;
    cursor: pointer;
    border-top: none;
}

.suggestion-item:first-child {
    border-top: 1px solid #ddd;
}

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