<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Modify Margins or Alignment In Powerbi-client to Embed Power BI in Web Application in Developer</title>
    <link>https://community.fabric.microsoft.com/t5/Developer/Modify-Margins-or-Alignment-In-Powerbi-client-to-Embed-Power-BI/m-p/4690401#M61161</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/160280"&gt;@jslade&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Thanks for reaching out to the Microsoft fabric community forum.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Here are a few approaches to help remove or reduce this white space:&lt;/P&gt;
&lt;P&gt;1. Use the layoutType Embed Configuration Option&lt;/P&gt;
&lt;P&gt;When embedding the report, make sure to configure the layout properly using layoutType in the embed configuration:&lt;/P&gt;
&lt;P&gt;const embedConfig = {&lt;BR /&gt;type: 'report',&lt;BR /&gt;id: '&amp;lt;report-id&amp;gt;',&lt;BR /&gt;embedUrl: '&amp;lt;embed-url&amp;gt;',&lt;BR /&gt;accessToken: '&amp;lt;access-token&amp;gt;',&lt;BR /&gt;tokenType: models.TokenType.Embed,&lt;BR /&gt;settings: {&lt;BR /&gt;layoutType: models.LayoutType.Custom, &lt;BR /&gt;customLayout: {&lt;BR /&gt;displayOption: models.DisplayOption.FitToPage,&lt;BR /&gt;pageSize: {&lt;BR /&gt;type: models.PageSizeType.Widescreen&lt;BR /&gt;}&lt;BR /&gt;}&lt;BR /&gt;}&lt;BR /&gt;};&lt;/P&gt;
&lt;P&gt;Try different DisplayOption values:&lt;/P&gt;
&lt;P&gt;FitToPage: Fits the whole report page into the iframe.&lt;/P&gt;
&lt;P&gt;FitToWidth: Fits the report width, may scroll vertically.&lt;/P&gt;
&lt;P&gt;ActualSize: Shows at default size.&lt;/P&gt;
&lt;P&gt;Note: The FitToWidth option usually helps eliminate side margins.&lt;/P&gt;
&lt;P&gt;2. Remove Default Padding with CSS&lt;/P&gt;
&lt;P&gt;Ensure the parent container of your Power BI iframe doesn't have unnecessary padding or margin.&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;#powerbi-container {&lt;BR /&gt;padding: 0;&lt;BR /&gt;margin: 0;&lt;BR /&gt;width: 100%;&lt;BR /&gt;height: 100%;&lt;BR /&gt;overflow: hidden;&lt;BR /&gt;}&lt;/P&gt;
&lt;P&gt;And in HTML:&lt;/P&gt;
&lt;P&gt;&amp;lt;div id="powerbi-container"&amp;gt;&amp;lt;/div&amp;gt;&lt;/P&gt;
&lt;P&gt;3. Use powerbi.embed() Properly&lt;/P&gt;
&lt;P&gt;Ensure you are embedding directly into the container with no surrounding wrappers that add space:&lt;/P&gt;
&lt;P&gt;const reportContainer = document.getElementById("powerbi-container");&lt;BR /&gt;powerbi.embed(reportContainer, embedConfig);&lt;BR /&gt;&lt;BR /&gt;4. Check Power BI Report Canvas Settings&lt;/P&gt;
&lt;P&gt;In Power BI Desktop, check your report page size: Go to the Visualizations pane. Select Page Size. Set the type to Custom, and reduce the canvas size to eliminate unneeded space. Also, remove or minimize any background or border margins within the report visuals.&lt;/P&gt;
&lt;P&gt;5. Post-load Adjustment via JS&lt;/P&gt;
&lt;P&gt;If you're still seeing a white margin and you suspect it's internal, you can try forcing the iframe’s content to zoom:&lt;/P&gt;
&lt;P&gt;const iframe = document.querySelector('iframe');&lt;BR /&gt;iframe.style.transform = 'scale(1.02)';&lt;BR /&gt;iframe.style.transformOrigin = 'top left';&lt;/P&gt;
&lt;P&gt;Note: This is not recommended as a primary solution but can help tweak layout visually.&lt;/P&gt;
&lt;P&gt;6. Check for Browser Default Styling&lt;/P&gt;
&lt;P&gt;Sometimes browsers apply default styling to iframe or container elements. Use developer tools to inspect any inherited margins, paddings, or borders, and reset them if necessary.&lt;/P&gt;
&lt;P&gt;Note:Always test changes in different browsers. Make sure to refresh the embedded report after updating layout settings in Power BI Desktop. Keep the powerbi-client package up to date, as newer versions may improve layout handling.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Please refer community threads and articles.&lt;/P&gt;
&lt;P&gt;&lt;A href="https://community.fabric.microsoft.com/t5/Service/PowerBI-report-doesn-t-fit-in-the-iframe-set-to-100-by-100/m-p/4282268" target="_blank"&gt;Solved: Re: PowerBI report doesn't fit in the iframe set t... - Microsoft Fabric Community&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://community.fabric.microsoft.com/t5/Desktop/Full-Screen-and-Focus-Mode-options-when-embedding-in-a-Power/td-p/2397802" target="_blank"&gt;Solved: Full Screen and Focus Mode options when embedding ... - Microsoft Fabric Community&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://learn.microsoft.com/en-us/javascript/api/overview/powerbi/configure-report-settings" target="_blank"&gt;Configure embedded report settings | Microsoft Learn&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://learn.microsoft.com/en-us/javascript/api/overview/powerbi/custom-layout" target="_blank"&gt;Report Layout in Power BI Embedded | Microsoft Learn&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://learn.microsoft.com/en-us/power-bi/create-reports/power-bi-report-display-settings?tabs=powerbi-desktop" target="_blank"&gt;Page display settings in a Power BI report - Power BI | Microsoft Learn&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;If you find this post helpful, please mark it as an "Accept as Solution" and consider giving a KUDOS. Feel free to reach out if you need further assistance.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks and Regards&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 13 May 2025 09:04:50 GMT</pubDate>
    <dc:creator>v-dineshya</dc:creator>
    <dc:date>2025-05-13T09:04:50Z</dc:date>
    <item>
      <title>Modify Margins or Alignment In Powerbi-client to Embed Power BI in Web Application</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Modify-Margins-or-Alignment-In-Powerbi-client-to-Embed-Power-BI/m-p/4609177#M59826</link>
      <description>&lt;P&gt;We are using Powerbi-Client to embed our power bi reports into our web application.&amp;nbsp; However, we have a lot of white space between our iFrame and the report and are looking for a way to remove the white space.&amp;nbsp; Is there a way to adjust the margins or left justify a report within the iFrame in Powerbi-Client?&lt;/P&gt;</description>
      <pubDate>Thu, 13 Mar 2025 18:19:11 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Modify-Margins-or-Alignment-In-Powerbi-client-to-Embed-Power-BI/m-p/4609177#M59826</guid>
      <dc:creator>jslade</dc:creator>
      <dc:date>2025-03-13T18:19:11Z</dc:date>
    </item>
    <item>
      <title>Re: Modify Margins or Alignment In Powerbi-client to Embed Power BI in Web Application</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Modify-Margins-or-Alignment-In-Powerbi-client-to-Embed-Power-BI/m-p/4623207#M59991</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/160280"&gt;@jslade&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I think you can try code as below.&lt;/P&gt;
&lt;P&gt;Method1:&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt; &amp;lt;iframe src="your_report_url" style="width: 100%; height: 100%; border: none; overflow: hidden;" allowfullscreen="true"&amp;gt;&amp;lt;/iframe&amp;gt;
&lt;/LI-CODE&gt;
&lt;P&gt;Method2:&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;&amp;lt;iframe src="your_report_url" style="width: 2400px; height: 1400px; border: none;"&amp;gt;&amp;lt;/iframe&amp;gt;&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best Regards,&lt;BR /&gt;Rico Zhou&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.&lt;/P&gt;</description>
      <pubDate>Tue, 25 Mar 2025 01:55:21 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Modify-Margins-or-Alignment-In-Powerbi-client-to-Embed-Power-BI/m-p/4623207#M59991</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2025-03-25T01:55:21Z</dc:date>
    </item>
    <item>
      <title>Re: Modify Margins or Alignment In Powerbi-client to Embed Power BI in Web Application</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Modify-Margins-or-Alignment-In-Powerbi-client-to-Embed-Power-BI/m-p/4624731#M60017</link>
      <description>&lt;P&gt;Thank you I will give it a try and let you know how it goes.&lt;/P&gt;</description>
      <pubDate>Tue, 25 Mar 2025 19:13:26 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Modify-Margins-or-Alignment-In-Powerbi-client-to-Embed-Power-BI/m-p/4624731#M60017</guid>
      <dc:creator>jslade</dc:creator>
      <dc:date>2025-03-25T19:13:26Z</dc:date>
    </item>
    <item>
      <title>Re: Modify Margins or Alignment In Powerbi-client to Embed Power BI in Web Application</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Modify-Margins-or-Alignment-In-Powerbi-client-to-Embed-Power-BI/m-p/4638567#M60215</link>
      <description>&lt;P&gt;These options didn't work, but upon further research it looks like our issue is more with the iFrame itself and not with how Power BI is being rendered.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 04 Apr 2025 15:33:55 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Modify-Margins-or-Alignment-In-Powerbi-client-to-Embed-Power-BI/m-p/4638567#M60215</guid>
      <dc:creator>jslade</dc:creator>
      <dc:date>2025-04-04T15:33:55Z</dc:date>
    </item>
    <item>
      <title>Re: Modify Margins or Alignment In Powerbi-client to Embed Power BI in Web Application</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Modify-Margins-or-Alignment-In-Powerbi-client-to-Embed-Power-BI/m-p/4690401#M61161</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/160280"&gt;@jslade&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Thanks for reaching out to the Microsoft fabric community forum.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Here are a few approaches to help remove or reduce this white space:&lt;/P&gt;
&lt;P&gt;1. Use the layoutType Embed Configuration Option&lt;/P&gt;
&lt;P&gt;When embedding the report, make sure to configure the layout properly using layoutType in the embed configuration:&lt;/P&gt;
&lt;P&gt;const embedConfig = {&lt;BR /&gt;type: 'report',&lt;BR /&gt;id: '&amp;lt;report-id&amp;gt;',&lt;BR /&gt;embedUrl: '&amp;lt;embed-url&amp;gt;',&lt;BR /&gt;accessToken: '&amp;lt;access-token&amp;gt;',&lt;BR /&gt;tokenType: models.TokenType.Embed,&lt;BR /&gt;settings: {&lt;BR /&gt;layoutType: models.LayoutType.Custom, &lt;BR /&gt;customLayout: {&lt;BR /&gt;displayOption: models.DisplayOption.FitToPage,&lt;BR /&gt;pageSize: {&lt;BR /&gt;type: models.PageSizeType.Widescreen&lt;BR /&gt;}&lt;BR /&gt;}&lt;BR /&gt;}&lt;BR /&gt;};&lt;/P&gt;
&lt;P&gt;Try different DisplayOption values:&lt;/P&gt;
&lt;P&gt;FitToPage: Fits the whole report page into the iframe.&lt;/P&gt;
&lt;P&gt;FitToWidth: Fits the report width, may scroll vertically.&lt;/P&gt;
&lt;P&gt;ActualSize: Shows at default size.&lt;/P&gt;
&lt;P&gt;Note: The FitToWidth option usually helps eliminate side margins.&lt;/P&gt;
&lt;P&gt;2. Remove Default Padding with CSS&lt;/P&gt;
&lt;P&gt;Ensure the parent container of your Power BI iframe doesn't have unnecessary padding or margin.&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;#powerbi-container {&lt;BR /&gt;padding: 0;&lt;BR /&gt;margin: 0;&lt;BR /&gt;width: 100%;&lt;BR /&gt;height: 100%;&lt;BR /&gt;overflow: hidden;&lt;BR /&gt;}&lt;/P&gt;
&lt;P&gt;And in HTML:&lt;/P&gt;
&lt;P&gt;&amp;lt;div id="powerbi-container"&amp;gt;&amp;lt;/div&amp;gt;&lt;/P&gt;
&lt;P&gt;3. Use powerbi.embed() Properly&lt;/P&gt;
&lt;P&gt;Ensure you are embedding directly into the container with no surrounding wrappers that add space:&lt;/P&gt;
&lt;P&gt;const reportContainer = document.getElementById("powerbi-container");&lt;BR /&gt;powerbi.embed(reportContainer, embedConfig);&lt;BR /&gt;&lt;BR /&gt;4. Check Power BI Report Canvas Settings&lt;/P&gt;
&lt;P&gt;In Power BI Desktop, check your report page size: Go to the Visualizations pane. Select Page Size. Set the type to Custom, and reduce the canvas size to eliminate unneeded space. Also, remove or minimize any background or border margins within the report visuals.&lt;/P&gt;
&lt;P&gt;5. Post-load Adjustment via JS&lt;/P&gt;
&lt;P&gt;If you're still seeing a white margin and you suspect it's internal, you can try forcing the iframe’s content to zoom:&lt;/P&gt;
&lt;P&gt;const iframe = document.querySelector('iframe');&lt;BR /&gt;iframe.style.transform = 'scale(1.02)';&lt;BR /&gt;iframe.style.transformOrigin = 'top left';&lt;/P&gt;
&lt;P&gt;Note: This is not recommended as a primary solution but can help tweak layout visually.&lt;/P&gt;
&lt;P&gt;6. Check for Browser Default Styling&lt;/P&gt;
&lt;P&gt;Sometimes browsers apply default styling to iframe or container elements. Use developer tools to inspect any inherited margins, paddings, or borders, and reset them if necessary.&lt;/P&gt;
&lt;P&gt;Note:Always test changes in different browsers. Make sure to refresh the embedded report after updating layout settings in Power BI Desktop. Keep the powerbi-client package up to date, as newer versions may improve layout handling.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Please refer community threads and articles.&lt;/P&gt;
&lt;P&gt;&lt;A href="https://community.fabric.microsoft.com/t5/Service/PowerBI-report-doesn-t-fit-in-the-iframe-set-to-100-by-100/m-p/4282268" target="_blank"&gt;Solved: Re: PowerBI report doesn't fit in the iframe set t... - Microsoft Fabric Community&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://community.fabric.microsoft.com/t5/Desktop/Full-Screen-and-Focus-Mode-options-when-embedding-in-a-Power/td-p/2397802" target="_blank"&gt;Solved: Full Screen and Focus Mode options when embedding ... - Microsoft Fabric Community&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://learn.microsoft.com/en-us/javascript/api/overview/powerbi/configure-report-settings" target="_blank"&gt;Configure embedded report settings | Microsoft Learn&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://learn.microsoft.com/en-us/javascript/api/overview/powerbi/custom-layout" target="_blank"&gt;Report Layout in Power BI Embedded | Microsoft Learn&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://learn.microsoft.com/en-us/power-bi/create-reports/power-bi-report-display-settings?tabs=powerbi-desktop" target="_blank"&gt;Page display settings in a Power BI report - Power BI | Microsoft Learn&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;If you find this post helpful, please mark it as an "Accept as Solution" and consider giving a KUDOS. Feel free to reach out if you need further assistance.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks and Regards&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 13 May 2025 09:04:50 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Modify-Margins-or-Alignment-In-Powerbi-client-to-Embed-Power-BI/m-p/4690401#M61161</guid>
      <dc:creator>v-dineshya</dc:creator>
      <dc:date>2025-05-13T09:04:50Z</dc:date>
    </item>
    <item>
      <title>Re: Modify Margins or Alignment In Powerbi-client to Embed Power BI in Web Application</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Modify-Margins-or-Alignment-In-Powerbi-client-to-Embed-Power-BI/m-p/4696265#M61234</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/160280"&gt;@jslade&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;If my response has resolved your query, please mark it as the &lt;STRONG&gt;"Accepted Solution"&lt;/STRONG&gt; to assist others. Additionally, a &lt;STRONG&gt;"Kudos"&lt;/STRONG&gt; would be appreciated if you found my response helpful.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thank you&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 16 May 2025 15:36:23 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Modify-Margins-or-Alignment-In-Powerbi-client-to-Embed-Power-BI/m-p/4696265#M61234</guid>
      <dc:creator>v-dineshya</dc:creator>
      <dc:date>2025-05-16T15:36:23Z</dc:date>
    </item>
    <item>
      <title>Re: Modify Margins or Alignment In Powerbi-client to Embed Power BI in Web Application</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Modify-Margins-or-Alignment-In-Powerbi-client-to-Embed-Power-BI/m-p/4698801#M61276</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;A href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/160280" target="_blank"&gt;@jslade&lt;/A&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;If my response has resolved your query, please mark it as the&amp;nbsp;&lt;STRONG&gt;"Accepted Solution"&lt;/STRONG&gt;&amp;nbsp;to assist others. Additionally, a&amp;nbsp;&lt;STRONG&gt;"Kudos"&lt;/STRONG&gt;&amp;nbsp;would be appreciated if you found my response helpful.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thank you&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 19 May 2025 15:40:32 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Modify-Margins-or-Alignment-In-Powerbi-client-to-Embed-Power-BI/m-p/4698801#M61276</guid>
      <dc:creator>v-dineshya</dc:creator>
      <dc:date>2025-05-19T15:40:32Z</dc:date>
    </item>
    <item>
      <title>Re: Modify Margins or Alignment In Powerbi-client to Embed Power BI in Web Application</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Modify-Margins-or-Alignment-In-Powerbi-client-to-Embed-Power-BI/m-p/4703914#M61349</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;A href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/160280" target="_blank" rel="noopener"&gt;@jslade&lt;/A&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;If my response has resolved your query, please mark it as the&amp;nbsp;&lt;STRONG&gt;"Accepted Solution"&lt;/STRONG&gt;&amp;nbsp;to assist others. Additionally, a&amp;nbsp;&lt;STRONG&gt;"Kudos"&lt;/STRONG&gt;&amp;nbsp;would be appreciated if you found my response helpful.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thank you&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 22 May 2025 15:38:27 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Modify-Margins-or-Alignment-In-Powerbi-client-to-Embed-Power-BI/m-p/4703914#M61349</guid>
      <dc:creator>v-dineshya</dc:creator>
      <dc:date>2025-05-22T15:38:27Z</dc:date>
    </item>
  </channel>
</rss>

