/* Add this to your stylesheet */
.search-list {
    position: absolute;
    z-index: 1000;
    width: 100%;
    max-height: 200px;
    overflow-y: auto;
    background: white;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin-top: 2px;
    display: none;
}

.search-list li {
    padding: 8px 12px;
    border-bottom: 1px solid #eee;
    cursor: pointer;
}

.search-list li:hover {
    background-color: #f5f5f5;
}

.search-list li.selected {
    background-color: #e9ecef;
    color: #495057;
}

.search-list li.no-result {
    color: #0d6efd;
    font-weight: 500;
}

.search-list li.no-result:hover {
    background-color: #e7f1ff;
}

.select-container {
    position: relative;
}

    /* Suggestions dropdown styling */
    #suggestions {
        position: absolute;
        z-index: 1000;
        width: 100%;
        max-height: 200px;
        overflow-y: auto;
        border: 1px solid #ced4da;
        border-radius: 0.25rem;
        background: white;
        display: none;
        margin-top: 2px;
    }
    
    #suggestions li {
        padding: 8px 12px;
        cursor: pointer;
        list-style-type: none;
    }
    
    #suggestions li:hover, #suggestions .active {
        background-color: #007bff;
        color: white;
    }