/**
 * Kind Cities - Wikidata Integration Styles
 */

/* Wikidata Container */
.kc-wikidata-container {
    margin-bottom: 20px;
}

/* Search Controls */
.kc-wikidata-search-controls {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.kc-wikidata-search-controls input[type="text"] {
    flex-grow: 1;
}

/* Search Results */
.kc-wikidata-search-results {
    margin-top: 10px;
    padding: 10px;
    background: #f9f9f9;
    border: 1px solid #ddd;
    max-height: 200px;
    overflow-y: auto;
}

.kc-wikidata-search-results ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.kc-wikidata-search-results li {
    margin-bottom: 5px;
    padding-bottom: 5px;
    border-bottom: 1px solid #eee;
}

.kc-wikidata-search-results li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.kc-wikidata-search-results .description {
    color: #666;
    font-style: italic;
}

.kc-wikidata-search-results a {
    display: block;
    padding: 4px 0;
    text-decoration: none;
}

.kc-wikidata-search-results a:hover {
    background: #f0f0f0;
}

/* Current Connection */
.kc-wikidata-current {
    margin-top: 20px;
    padding: 15px;
    background: #f9f9f9;
    border: 1px solid #ddd;
}

.kc-wikidata-current h4 {
    margin-top: 0;
    margin-bottom: 15px;
    padding-bottom: 5px;
    border-bottom: 1px solid #eee;
}

.kc-wikidata-actions {
    margin-top: 15px;
    display: flex;
    gap: 10px;
}

/* Debug Section */
.kc-wikidata-debug {
    margin-top: 20px;
    padding: 15px;
    background: #f5f5f5;
    border: 1px solid #ddd;
}

.kc-wikidata-debug h4 {
    margin-top: 0;
    margin-bottom: 15px;
    padding-bottom: 5px;
    border-bottom: 1px solid #eee;
}

.kc-wikidata-debug pre {
    margin: 0;
    padding: 10px;
    background: #fff;
    border: 1px solid #eee;
    overflow: auto;
    font-size: 12px;
    line-height: 1.4;
}

/* Settings Page */
.kc-api-test, 
.kc-manual-refresh {
    margin-top: 30px;
    padding: 20px;
    background: #fff;
    border: 1px solid #ddd;
    border-left: 4px solid #0073aa;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04);
}

.kc-api-test h2, 
.kc-manual-refresh h2 {
    margin-top: 0;
    margin-bottom: 15px;
    padding-bottom: 5px;
    border-bottom: 1px solid #eee;
}

#kc-wikidata-api-test-result,
#kc-manual-refresh-result {
    display: inline-block;
    margin-left: 10px;
    vertical-align: middle;
}

/* Success and Error Messages */
.kc-success {
    color: #46b450;
}

.kc-error {
    color: #dc3232;
}

.kc-loading {
    color: #0073aa;
    font-style: italic;
}