/* Türkiye İl-İlçe Seçimi Plugin CSS */

/* District field'ları için temel styling */
.turkey-district-field {
    display: none;
    transition: all 0.3s ease;
}

.turkey-district-field.show {
    display: block;
}

/* District select field'ları */
.turkey-district-select {
    width: 100%;
    box-sizing: border-box;
}

/* Loading durumu için styling */
.form-row.processing {
    position: relative;
    opacity: 0.7;
}

.form-row.processing .loading-icon {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    font-size: 12px;
    color: #666;
    z-index: 10;
}

/* Hata mesajları */
.error-message {
    color: #e74c3c;
    font-size: 12px;
    margin-top: 5px;
    display: block;
}

/* WooCommerce checkout sayfasında özel stil */
.woocommerce-checkout .turkey-district-field {
    margin-bottom: 15px;
}

/* Responsive design */
@media (max-width: 768px) {
    .turkey-district-field {
        margin-bottom: 10px;
    }
    
    .form-row.processing .loading-icon {
        font-size: 11px;
    }
}

/* Admin panel için styling */
.turkey-districts-admin {
    margin: 20px 0;
}

.turkey-districts-admin .form-table {
    margin-top: 20px;
}

.turkey-districts-admin .button {
    margin-right: 10px;
}

/* Debug bilgileri */
.turkey-districts-debug {
    background: #f0f0f1;
    padding: 15px;
    margin: 15px 0;
    border: 1px solid #ddd;
    border-radius: 3px;
}

.turkey-districts-debug h4 {
    margin-top: 0;
    color: #333;
}

.turkey-districts-debug p {
    margin: 5px 0;
    font-size: 13px;
}

/* Plugin aktif durumu göstergesi */
.turkey-districts-active .turkey-district-field {
    border-left: 3px solid #2271b1;
    padding-left: 10px;
}

/* Select2 uyumluluğu */
.select2-container .turkey-district-select {
    width: 100% !important;
}

/* Accessibility iyileştirmeleri */
.turkey-district-field label {
    font-weight: bold;
    color: #333;
}

.turkey-district-field .required {
    color: #e74c3c;
}

/* Smooth transitions */
.turkey-district-field {
    transition: opacity 0.3s ease, height 0.3s ease;
}

.turkey-district-field:not(.show) {
    opacity: 0;
    height: 0;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

/* WooCommerce form styling uyumluluğu */
.woocommerce form .turkey-district-field {
    margin-bottom: 1em;
}

.woocommerce form .turkey-district-field label {
    display: block;
    margin-bottom: 0.5em;
}

.woocommerce form .turkey-district-field select {
    width: 100%;
    padding: 0.5em;
    border: 1px solid #ddd;
    border-radius: 3px;
    font-size: 14px;
}

.woocommerce form .turkey-district-field select:focus {
    outline: none;
    border-color: #2271b1;
    box-shadow: 0 0 0 1px #2271b1;
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    .turkey-districts-debug {
        background: #1e1e1e;
        border-color: #333;
        color: #fff;
    }
    
    .turkey-district-field label {
        color: #fff;
    }
    
    .form-row.processing .loading-icon {
        color: #ccc;
    }
}

/* Print styles */
@media print {
    .turkey-district-field {
        display: block !important;
        opacity: 1 !important;
        height: auto !important;
    }
    
    .loading-icon,
    .error-message {
        display: none !important;
    }
} 