.suggestion-box {
    position: absolute;
    background-color: #fff;
    border: 1px solid #ccc;
    width: 100%;
    z-index: 1000;
    display: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-height: 200px; /* Set a maximum height for the suggestion box */
    overflow-y: auto;  /* Enable vertical scrolling */
}

.suggestion {
    text-align: left;
    padding: 8px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

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

.suggestion:active {
    background-color: #e0e0e0;
}