.clpcs-search-container {
    position: relative;
    z-index: 1000; /* This ensures the container is on top of most other elements */
}

#clpcs-search-results {
    position: absolute;
    width: 100%;
    max-height: 200px;
    overflow-y: auto;
    background-color: #fff; /* White background */
    border: 1px solid #ccc;
    z-index: 1001; /* This ensures the results are on top of the container and other elements */
}

.clpcs-result-item {
    padding: 10px;
    border-bottom: 1px solid #eee;
}

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

.clpcs-no-results {
    padding: 10px;
    text-align: center;
}

