.wpfvs-citizen-search {
    max-width: 500px;
    margin: 1.5rem 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.wpfvs-count {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #333;
}

.wpfvs-count strong {
    color: #0073aa;
}

.wpfvs-search-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.wpfvs-search-input {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    border: 2px solid #ddd;
    border-radius: 6px;
    transition: border-color 0.2s ease;
    box-sizing: border-box;
}

.wpfvs-search-input:focus {
    outline: none;
    border-color: #0073aa;
}

.wpfvs-loading {
    position: absolute;
    right: 12px;
    width: 20px;
    height: 20px;
    border: 2px solid #ddd;
    border-top-color: #0073aa;
    border-radius: 50%;
    animation: wpfvs-spin 0.8s linear infinite;
}

@keyframes wpfvs-spin {
    to { transform: rotate(360deg); }
}

.wpfvs-results {
    margin-top: 1rem;
}

.wpfvs-results-list {
    list-style: none;
    margin: 0;
    padding: 0;
    border: 1px solid #ddd;
    border-radius: 6px;
    max-height: 300px;
    overflow-y: auto;
}

.wpfvs-results-list li {
    padding: 0.625rem 1rem;
    border-bottom: 1px solid #eee;
    color: #333;
}

.wpfvs-results-list li:last-child {
    border-bottom: none;
}

.wpfvs-results-list li:nth-child(odd) {
    background: #f9f9f9;
}

.wpfvs-country {
    color: #666;
    font-style: italic;
}

.wpfvs-message {
    padding: 0.75rem;
    margin: 0;
    border-radius: 6px;
    font-size: 0.9rem;
}

.wpfvs-no-results {
    background: #fff3cd;
    color: #856404;
}

.wpfvs-has-more {
    background: #e7f3ff;
    color: #004085;
    margin-top: 0.5rem;
}

.wpfvs-error {
    background: #f8d7da;
    color: #721c24;
}
