.clh-search-container {
    margin: 20px 0;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background: #f9f9f9;
}

.clh-input-group {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.clh-search-input {
    flex: 1;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
}

.clh-search-button {
    padding: 10px 20px;
    background: #0073aa;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

.clh-search-button:hover {
    background: #005a87;
}

.clh-results-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.clh-result-item {
    padding: 15px;
    margin-bottom: 10px;
    border: 1px solid #e1e1e1;
    border-radius: 4px;
    background: white;
}

.clh-result-item h4 {
    margin: 0 0 10px 0;
    color: #0073aa;
}

.clh-result-item h4 a {
    text-decoration: none;
    color: inherit;
}

.clh-result-item h4 a:hover {
    text-decoration: underline;
}

.clh-excerpt {
    margin: 10px 0;
    line-height: 1.5;
    color: #666;
}

.clh-excerpt strong {
    background: #ffff99;
    padding: 1px 2px;
}

.clh-post-type {
    display: inline-block;
    padding: 2px 8px;
    background: #0073aa;
    color: white;
    border-radius: 3px;
    font-size: 12px;
    text-transform: uppercase;
}

.clh-loading,
.clh-no-results,
.clh-error {
    padding: 20px;
    text-align: center;
    font-style: italic;
    color: #666;
}

.clh-error {
    color: #d63638;
}