.cps-search-container {
    position: relative;
    width: 100%;
    max-width: 400px;
}
.cps-search-input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}
.cps-search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #ccc;
    border-top: none;
    max-height: 200px;
    overflow-y: auto;
    z-index: 1000;
    width: 100%;
    padding: 0 10px;
    margin-top: 0;
}
.cps-search-results li {
    list-style: none;
    padding: 10px;
    border-bottom: 1px solid #eee;
}
.cps-search-results li a {
    text-decoration: none;
    color: #333;
}
.cps-search-results li:hover {
    background: #f9f9f9;
}
.cps-search-container p:empty{
    height: 0;
    margin: 0;
    padding: 0;
}