.suggestions-list {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 1000;
    border: 2px solid #26cfe9;
    background-color: white;
    list-style: none;
    /* 👈 Add spacing from input field */
    margin: 4px 0 0 0;
    padding: 0;
    max-height: 180px;
    overflow-y: auto;
    border-radius: 0 0 5px 5px;
}

.suggestions-list li {
    padding: 8px 12px;
    cursor: pointer;
}

.suggestions-list li:hover {
    background-color: #dad6d6;
}