/*
 * Cosmetic hide of tenant-related UI in the admin panel.
 * Functional logic, IDs, JS, and routes are untouched — purely visual.
 *
 * To roll back: remove the <link> tag for this file from views/head.ejs
 * (or delete this file). All tenant UI reappears immediately.
 *
 * Scope (option A — minimal):
 *   - "Current Tenant: ..." line in the top header
 *   - Tenants nav tab and its content section
 *   - "Tenant" column in the users table (header + cell, every row)
 */

/* Header: "Current Tenant: <name>" line */
.xr-header .right.menu .ui.subheader.item:has(strong) {
    display: none !important;
}

/* Tabs nav: "Tenants" link */
#tenant-list-tab {
    display: none !important;
}

/* Tab content: Tenants segment */
[data-tab="tenant-list"] {
    display: none !important;
}

/* Users table: 5th column is "Tenant" (after checkbox, State, Email, Last Login).
 * Header + every row cell. */
#users_table thead th:nth-child(5),
#users_table tbody td:nth-child(5) {
    display: none !important;
}

/* XSI Settings tab: "Tenancy" row containing the Convert-to-Multi-Tenancy button */
#settings_table tr:has(#convert_tenancy_type) {
    display: none !important;
}
