/* Global Styles for Drivio Application */

/* Hide tenant switcher on login and account pages */
body[data-page="Account.Login"] .abp-tenant-switch,
body[data-page="Account.Register"] .abp-tenant-switch,
body[data-page="Account.ForgotPassword"] .abp-tenant-switch,
body[data-page="Account.ResetPassword"] .abp-tenant-switch,
body[data-page="Account.SelectSchool"] .abp-tenant-switch {
    display: none !important;
}

/* Alternative selectors for tenant switcher */
.abp-tenant-switch[style*="display: none"] {
    display: none !important;
}

/* Hide tenant switcher on any page with /Account/ in the URL */
body[data-page*="Account"] .abp-tenant-switch,
body[data-page*="account"] .abp-tenant-switch {
    display: none !important;
}

/* Force hide tenant switcher on login page using more specific selectors */
.login-page .abp-tenant-switch,
[data-page*="login"] .abp-tenant-switch,
[data-page*="Login"] .abp-tenant-switch {
    display: none !important;
}
