/* Azur dashboard/footer shell normalization. Loaded only for dashboard routes or Elementor editing. */
/* v0.0.2.120 Host test footer normalization.
   Keeps custom footer outside the dashboard sidebar rail on desktop while
   preserving the normal full-width footer on public pages and mobile. */
@media (min-width: 992px) {
    body.azur-dashboard-page:not(.elementor-editor-active) .azur-custom-footer-shell,
    body.azur-dashboard-page:not(.elementor-editor-active) .azur-site-footer {
        width: calc(100% - 290px) !important;
        max-width: calc(100% - 290px) !important;
        margin-left: 290px !important;
        margin-right: 0 !important;
    }
}
@media (max-width: 991px) {
    body.azur-dashboard-page:not(.elementor-editor-active) .azur-custom-footer-shell,
    body.azur-dashboard-page:not(.elementor-editor-active) .azur-site-footer {
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
    }
}
