﻿/*
 Fenestration Services — Admin Analytics Page Isolation
 Build: 20260829-ADMINANALYTICSPAGES1

 Prevents Angular route content from appearing underneath the injected
 Abandoned Quotes / Visitor Funnel pages.
*/

/* ABANDONED QUOTES:
   while active, only router-outlet + the Abandoned Quotes page may remain
   visible inside the Admin content host. Any routed Angular component that
   appears later is hidden automatically. */
html[data-fs-admin-analytics-page="abandoned-quotes"]
.dashboard-container .main-section main.content > *:not(router-outlet):not(#fs-abandoned-quotes-page) {
    display: none !important;
}

html[data-fs-admin-analytics-page="abandoned-quotes"]
.dashboard-container .main-section main.content > #fs-abandoned-quotes-page {
    display: block !important;
}

/* VISITOR FUNNEL */
html[data-fs-admin-analytics-page="visitor-funnel"]
.dashboard-container .main-section main.content > *:not(router-outlet):not(#fs-visitor-funnel-page) {
    display: none !important;
}

html[data-fs-admin-analytics-page="visitor-funnel"]
.dashboard-container .main-section main.content > #fs-visitor-funnel-page {
    display: block !important;
}

/* Never allow the other analytics page to remain visible underneath. */
html[data-fs-admin-analytics-page="abandoned-quotes"] #fs-visitor-funnel-page,
html[data-fs-admin-analytics-page="visitor-funnel"] #fs-abandoned-quotes-page {
    display: none !important;
}
