/* IPTV Enterprise Customer Styles */

.iptv-services-container {
    background: white;
    padding: 30px;
    border-radius: 8px;
    margin: 20px 0;
}

.iptv-service-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.iptv-service-card:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

.iptv-service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.iptv-service-title {
    font-size: 18px;
    font-weight: 700;
    color: #1f2937;
}

.iptv-service-status {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.iptv-status-active {
    background: #d1fae5;
    color: #047857;
}

.iptv-status-inactive {
    background: #fef3c7;
    color: #d97706;
}

.iptv-service-details {
    background: #f9fafb;
    padding: 15px;
    border-radius: 6px;
    margin: 15px 0;
}

.iptv-detail-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #e5e7eb;
}

.iptv-detail-row:last-child {
    border-bottom: none;
}

.iptv-detail-label {
    font-weight: 600;
    color: #6b7280;
}

.iptv-detail-value {
    font-family: 'Courier New', monospace;
    background: white;
    padding: 4px 8px;
    border-radius: 3px;
}

.iptv-show-password {
    cursor: pointer;
    color: #2563eb;
    text-decoration: underline;
    font-size: 12px;
    margin-left: 10px;
}

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

.iptv-btn {
    padding: 8px 16px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.iptv-btn-primary {
    background: #2563eb;
    color: white;
}

.iptv-btn-primary:hover {
    background: #1d4ed8;
}

.iptv-btn-secondary {
    background: #e5e7eb;
    color: #1f2937;
}

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

@media (max-width: 768px) {
    .iptv-service-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .iptv-actions {
        flex-direction: column;
    }

    .iptv-actions .iptv-btn {
        width: 100%;
    }
}
