.wp-iptv-parser {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    margin-bottom: 30px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.wp-iptv-parser h2 {
    margin-bottom: 20px;
    border-bottom: 2px solid #3b82f6;
    padding-bottom: 8px;
    color: #1f2937;
}

.wp-iptv-parser__input {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.wp-iptv-parser__input label {
    width: 100%;
    font-weight: 600;
    color: #4b5563;
}

.wp-iptv-parser__input input {
    flex: 1;
    min-width: 200px;
    padding: 10px;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    font-size: 14px;
}

.wp-iptv-btn {
    background: #3b82f6;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.2s;
}

.wp-iptv-btn:hover {
    background: #2563eb;
}

.wp-iptv-btn.secondary {
    background: #f3f4f6;
    color: #1f2937;
    border: 1px solid #d1d5db;
}

.wp-iptv-btn.secondary:hover {
    background: #e5e7eb;
}

.wp-iptv-parser__loading {
    display: none;
    padding: 10px;
    color: #3b82f6;
}

.wp-iptv-parser__result {
    display: none;
    margin-top: 20px;
}

.wp-iptv-info {
    background: #f9fafb;
    padding: 15px;
    border-radius: 6px;
    border: 1px solid #e5e7eb;
    margin-bottom: 20px;
    line-height: 1.8;
}

.wp-iptv-actions {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.wp-iptv-table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #e5e7eb;
}

.wp-iptv-table th,
.wp-iptv-table td {
    padding: 10px;
    border-bottom: 1px solid #e5e7eb;
    text-align: left;
}

.wp-iptv-table th {
    background: #f3f4f6;
    font-weight: 600;
}

.wp-iptv-table tr:hover {
    background: #f9fafb;
}

.wp-iptv-error {
    margin-top: 15px;
    color: #dc2626;
    display: none;
}

.wp-iptv-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
}

.wp-iptv-modal-content {
    background: #fff;
    margin: 5% auto;
    padding: 20px;
    border-radius: 8px;
    width: 90%;
    max-width: 800px;
    position: relative;
}

.wp-iptv-modal-close {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 24px;
    cursor: pointer;
    color: #9ca3af;
}

.wp-iptv-modal video {
    width: 100%;
    border-radius: 8px;
    background: #000;
}

