/* /Components/Layout/AdminLayout.razor.rz.scp.css */

.dashboard-shell[b-d0uw8ivxdo] {
    --dashboard-header-height: 4.45rem;
    --dashboard-base-font-size: 0.9rem;
    --dashboard-input-font-size: 0.76rem;
    --dashboard-card-title-gap: 0.22rem;
    --dashboard-card-note-gap: 0.38rem;
    --dashboard-card-note-line-height: 1.45;
    --dashboard-menu-hover-text: #d8e3ff;
    --dashboard-menu-hover-bg: rgba(255, 255, 255, 0.05);
    --dashboard-menu-hover-border: rgba(255, 255, 255, 0.05);
    --dashboard-menu-hover-icon-color: #a9b7d7;
    --dashboard-menu-hover-icon-border: rgba(255, 255, 255, 0.12);
    --dashboard-menu-selected-text: #e5ecff;
    --dashboard-menu-selected-bg: rgba(98, 114, 243, 0.14);
    --dashboard-menu-selected-border: rgba(98, 114, 243, 0.42);
    --dashboard-menu-selected-icon-color: #8fa3ff;
    --dashboard-menu-selected-icon-bg: rgba(98, 114, 243, 0.15);
    --dashboard-menu-selected-icon-border: rgba(98, 114, 243, 0.28);
    --dashboard-menu-selected-indicator: #8fa3ff;
    --dashboard-input-border-color: rgba(255, 255, 255, 0.14);
    --dashboard-input-border-focus-color: rgba(98, 114, 243, 0.52);
    --dashboard-input-focus-ring-color: rgba(98, 114, 243, 0.18);
    --dashboard-input-bg-color: rgba(255, 255, 255, 0.04);
    --dashboard-input-bg-readonly-color: rgba(255, 255, 255, 0.06);
    --dashboard-input-text-color: #e8efff;
    --dashboard-input-placeholder-color: #8094b9;
    --dashboard-input-option-bg-color: #0f182e;
    --dashboard-input-option-selected-bg-color: #2a3f72;
    --dashboard-input-option-muted-color: #6f84aa;
    --dashboard-input-optgroup-color: #a8bbde;
    min-height: 100vh;
    height: 100vh;
    min-height: 100dvh;
    height: 100dvh;
    display: flex;
    overflow: hidden;
    background: linear-gradient(135deg, #060d1f 0%, #0f172a 60%, #1a1040 100%);
    color: #dce6ff;
    font-family: var(--font-dashboard);
    font-size: var(--dashboard-base-font-size);
    line-height: 1.4;
}

.dashboard-initializing[b-d0uw8ivxdo] {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, #060d1f 0%, #0f172a 60%, #1a1040 100%);
    color: #dce6ff;
    font-family: var(--font-dashboard);
}

.dashboard-initializing-card[b-d0uw8ivxdo] {
    width: min(27rem, 100%);
    display: grid;
    gap: 0.45rem;
    padding: 1rem 1.1rem;
    border-radius: 0.95rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
    box-shadow: 0 16px 34px rgba(3, 8, 22, 0.38);
}

.dashboard-initializing-card h2[b-d0uw8ivxdo] {
    margin: 0;
    font-size: 0.96rem;
    font-weight: 700;
    color: #f4f8ff;
}

.dashboard-initializing-card p[b-d0uw8ivxdo] {
    margin: 0;
    font-size: 0.78rem;
    color: #9eb0d0;
}

.dashboard-initializing-spinner[b-d0uw8ivxdo] {
    width: 1.25rem;
    height: 1.25rem;
    border-radius: 999px;
    border: 2px solid rgba(255, 255, 255, 0.18);
    border-top-color: #7ea6ff;
    animation: dashboard-initializing-spin-b-d0uw8ivxdo 0.85s linear infinite;
}

@keyframes dashboard-initializing-spin-b-d0uw8ivxdo {
    to {
        transform: rotate(360deg);
    }
}

.dashboard-shell button[b-d0uw8ivxdo],
.dashboard-shell input[b-d0uw8ivxdo],
.dashboard-shell select[b-d0uw8ivxdo],
.dashboard-shell textarea[b-d0uw8ivxdo] {
    font-family: var(--font-dashboard);
}

[b-d0uw8ivxdo] input:not([type="checkbox"]):not([type="radio"]):not([type="range"]):not([type="file"]):not([type="color"]):not(.dashboard-grid-search-input),
[b-d0uw8ivxdo] textarea,
[b-d0uw8ivxdo] select:not(.dashboard-grid-select):not(.stores-group-select) {
    width: 100%;
    box-sizing: border-box;
    border: 1px solid var(--dashboard-input-border-color);
    border-radius: 0.62rem;
    background: var(--dashboard-input-bg-color);
    color: var(--dashboard-input-text-color);
    font-size: var(--dashboard-input-font-size);
    line-height: 1.35;
    padding: 0.55rem 0.62rem;
    outline: none;
    transition: border-color 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
}

[b-d0uw8ivxdo] select:not(.dashboard-grid-select):not(.stores-group-select) {
    color-scheme: dark;
}

[b-d0uw8ivxdo] select:not(.dashboard-grid-select):not(.stores-group-select) option,
[b-d0uw8ivxdo] select:not(.dashboard-grid-select):not(.stores-group-select) optgroup {
    color: var(--dashboard-input-text-color);
    background: var(--dashboard-input-option-bg-color);
}

[b-d0uw8ivxdo] select:not(.dashboard-grid-select):not(.stores-group-select) option:checked {
    color: #f4f8ff;
    background: var(--dashboard-input-option-selected-bg-color);
}

[b-d0uw8ivxdo] select:not(.dashboard-grid-select):not(.stores-group-select) option:disabled {
    color: var(--dashboard-input-option-muted-color);
    background: var(--dashboard-input-option-bg-color);
}

[b-d0uw8ivxdo] select:not(.dashboard-grid-select):not(.stores-group-select) optgroup {
    color: var(--dashboard-input-optgroup-color);
    font-weight: 700;
}

[b-d0uw8ivxdo] input:not([type="checkbox"]):not([type="radio"]):not([type="range"]):not([type="file"]):not([type="color"]):not(.dashboard-grid-search-input)::placeholder,
[b-d0uw8ivxdo] textarea::placeholder {
    color: var(--dashboard-input-placeholder-color);
    opacity: 1;
}

[b-d0uw8ivxdo] input:not([type="checkbox"]):not([type="radio"]):not([type="range"]):not([type="file"]):not([type="color"]):not(.dashboard-grid-search-input):focus,
[b-d0uw8ivxdo] textarea:focus,
[b-d0uw8ivxdo] select:not(.dashboard-grid-select):not(.stores-group-select):focus {
    border-color: var(--dashboard-input-border-focus-color);
    box-shadow: 0 0 0 2px var(--dashboard-input-focus-ring-color);
}

[b-d0uw8ivxdo] input:not([type="checkbox"]):not([type="radio"]):not([type="range"]):not([type="file"]):not([type="color"]):not(.dashboard-grid-search-input):read-only {
    opacity: 0.78;
    cursor: default;
    background: var(--dashboard-input-bg-readonly-color);
}

[b-d0uw8ivxdo] input:not([type="checkbox"]):not([type="radio"]):not([type="range"]):not([type="file"]):not([type="color"]):not(.dashboard-grid-search-input):disabled,
[b-d0uw8ivxdo] textarea:disabled,
[b-d0uw8ivxdo] select:not(.dashboard-grid-select):not(.stores-group-select):disabled {
    opacity: 0.65;
    cursor: not-allowed;
}

.dashboard-sidebar[b-d0uw8ivxdo] {
    width: 15rem;
    min-width: 15rem;
    height: 100vh;
    position: sticky;
    top: 0;
    z-index: 40;
    display: flex;
    flex-direction: column;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(15, 23, 42, 0.93);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    overflow: visible;
}

@media (min-width: 1280px) {
    .dashboard-sidebar[b-d0uw8ivxdo] {
        width: 16rem;
        min-width: 16rem;
    }
}

.dashboard-main[b-d0uw8ivxdo] {
    flex: 1;
    min-width: 0;
    min-height: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.dashboard-topbar[b-d0uw8ivxdo] {
    position: sticky;
    top: 0;
    z-index: 30;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    height: var(--dashboard-header-height);
    box-sizing: border-box;
    padding: 0.7rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    background: rgba(6, 13, 31, 0.86);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
}

.dashboard-topbar.notifications-open[b-d0uw8ivxdo] {
    z-index: 95;
}

.dashboard-topbar-left[b-d0uw8ivxdo],
.dashboard-topbar-right[b-d0uw8ivxdo] {
    display: flex;
    align-items: center;
    gap: 0.68rem;
}

.topbar-back-link[b-d0uw8ivxdo] {
    min-height: 2rem;
    padding: 0.32rem 0.58rem;
    border-radius: 0.62rem;
    border-color: rgba(143, 169, 255, 0.42);
    background: rgba(88, 112, 194, 0.22);
    color: #eef4ff;
    gap: 0.34rem;
    font-size: 0.74rem;
}

.topbar-back-link:hover[b-d0uw8ivxdo] {
    border-color: rgba(169, 190, 255, 0.62);
    background: rgba(103, 129, 220, 0.32);
    color: #f8fbff;
}

.dashboard-title-block[b-d0uw8ivxdo] {
    min-width: 0;
}

.dashboard-title[b-d0uw8ivxdo] {
    margin: 0;
    font-size: 0.96rem;
    line-height: 1.2;
    font-weight: 700;
    color: #f8fbff;
}

.dashboard-meta[b-d0uw8ivxdo] {
    margin: 0.16rem 0 0;
    font-size: 0.7rem;
    color: #8ea2c8;
    line-height: 1.2;
}

.mobile-menu-button[b-d0uw8ivxdo] {
    width: 2.35rem;
    height: 2.35rem;
    border-radius: 0.72rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.03);
    color: #dbe7ff;
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 0.22rem;
    cursor: pointer;
}

.mobile-menu-button span[b-d0uw8ivxdo] {
    display: block;
    width: 0.95rem;
    height: 0.11rem;
    border-radius: 999px;
    background: currentColor;
}

.topbar-search[b-d0uw8ivxdo] {
    height: 2.16rem;
    min-width: 17.2rem;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0 0.62rem;
    border-radius: 0.72rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
    color: #7f91b4;
}

.topbar-search-icon[b-d0uw8ivxdo] {
    width: 0.95rem;
    height: 0.95rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #6f83a9;
}

.topbar-search-icon svg[b-d0uw8ivxdo] {
    width: 100%;
    height: 100%;
}

.topbar-search-placeholder[b-d0uw8ivxdo] {
    font-size: 0.78rem;
    color: #7285a9;
    white-space: nowrap;
}

.topbar-search-shortcut[b-d0uw8ivxdo] {
    margin-left: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 1.24rem;
    padding: 0 0.36rem;
    border-radius: 0.34rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #697d9f;
    font-size: 0.67rem;
    letter-spacing: 0.01em;
}

.topbar-icon-button[b-d0uw8ivxdo] {
    position: relative;
    width: 2.16rem;
    height: 2.16rem;
    border-radius: 0.72rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
    color: #7f91b4;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.topbar-icon-button svg[b-d0uw8ivxdo] {
    width: 1rem;
    height: 1rem;
}

.topbar-icon-button:hover[b-d0uw8ivxdo] {
    color: #e7edff;
    border-color: rgba(98, 114, 243, 0.35);
    background: rgba(98, 114, 243, 0.13);
}

.topbar-notification-dot[b-d0uw8ivxdo] {
    position: absolute;
    top: 0.42rem;
    right: 0.42rem;
    width: 0.42rem;
    height: 0.42rem;
    border-radius: 999px;
    border: 1px solid #060d1f;
    background: #ef4444;
}

.topbar-notifications-shell[b-d0uw8ivxdo] {
    position: relative;
}

.topbar-notifications-backdrop[b-d0uw8ivxdo] {
    position: fixed;
    inset: 0;
    border: 0;
    margin: 0;
    padding: 0;
    background: transparent;
    z-index: 85;
    cursor: default;
}

.topbar-notifications-panel[b-d0uw8ivxdo] {
    position: absolute;
    top: calc(100% + 0.45rem);
    right: 0;
    width: min(26rem, 92vw);
    max-height: min(72vh, 34rem);
    overflow: auto;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 0.88rem;
    background: rgba(8, 14, 30, 0.98);
    box-shadow: 0 18px 36px rgba(4, 9, 22, 0.52);
    z-index: 90;
    padding: 0.5rem;
}

.topbar-notifications-header[b-d0uw8ivxdo] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.3rem 0.3rem 0.45rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 0.35rem;
}

.topbar-notifications-header strong[b-d0uw8ivxdo] {
    display: block;
    color: #f8fbff;
    font-size: 0.82rem;
    line-height: 1.2;
}

.topbar-notifications-header span[b-d0uw8ivxdo] {
    color: #8fa3c8;
    font-size: 0.7rem;
}

.topbar-notifications-empty[b-d0uw8ivxdo] {
    margin: 0;
    padding: 0.55rem 0.45rem 0.45rem;
    color: #8ea2c6;
    font-size: 0.75rem;
}

.topbar-notifications-list[b-d0uw8ivxdo] {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.36rem;
}

.topbar-notification-item[b-d0uw8ivxdo] {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.6rem;
    align-items: start;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0.7rem;
    background: rgba(255, 255, 255, 0.03);
    padding: 0.55rem 0.6rem;
}

.topbar-notification-item.is-read[b-d0uw8ivxdo] {
    opacity: 0.72;
}

.topbar-notification-item.level-success[b-d0uw8ivxdo] {
    border-color: rgba(52, 211, 153, 0.25);
}

.topbar-notification-item.level-warning[b-d0uw8ivxdo] {
    border-color: rgba(251, 191, 36, 0.3);
}

.topbar-notification-item.level-error[b-d0uw8ivxdo] {
    border-color: rgba(248, 113, 113, 0.34);
}

.topbar-notification-content strong[b-d0uw8ivxdo] {
    display: block;
    margin: 0;
    color: #f3f8ff;
    font-size: 0.76rem;
    line-height: 1.25;
}

.topbar-notification-content p[b-d0uw8ivxdo] {
    margin: 0.22rem 0 0;
    color: #aec0df;
    font-size: 0.72rem;
    line-height: 1.35;
}

.topbar-notification-meta[b-d0uw8ivxdo] {
    margin-top: 0.36rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    color: #7890b7;
    font-size: 0.66rem;
}

.topbar-notification-link[b-d0uw8ivxdo] {
    margin-top: 0.34rem;
    padding: 0;
}

.topbar-user[b-d0uw8ivxdo] {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.topbar-user-avatar[b-d0uw8ivxdo] {
    width: 2.16rem;
    height: 2.16rem;
    border-radius: 0.72rem;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 0 0 2px rgba(98, 114, 243, 0.22);
}

.dashboard-content[b-d0uw8ivxdo] {
    flex: 1 1 auto;
    min-width: 0;
    min-height: 0;
    width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    padding: 1.3rem 1.5rem 1.6rem;
}

.dashboard-overlay[b-d0uw8ivxdo] {
    position: fixed;
    inset: 0;
    border: 0;
    margin: 0;
    padding: 0;
    opacity: 0;
    pointer-events: none;
    background: rgba(6, 13, 31, 0.78);
    -webkit-backdrop-filter: blur(3px);
    backdrop-filter: blur(3px);
    transition: opacity 0.2s ease;
    z-index: 35;
}

[b-d0uw8ivxdo] .page-shell {
    display: grid;
    gap: 1rem;
}

[b-d0uw8ivxdo] .page-header {
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.03);
    padding: 1rem 1.2rem;
}

[b-d0uw8ivxdo] .page-header h1 {
    margin-top: 0.3rem;
    font-size: 1.26rem;
    color: #f8fbff;
}

[b-d0uw8ivxdo] .page-header p {
    margin: 0.45rem 0 0;
    color: #9fb0cd;
}

[b-d0uw8ivxdo] .route-pill {
    display: inline-flex;
    font-size: 0.7rem;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: #93a9df;
    border-radius: 999px;
    border: 1px solid rgba(98, 114, 243, 0.32);
    background: rgba(98, 114, 243, 0.12);
    padding: 0.24rem 0.58rem;
}

[b-d0uw8ivxdo] .status-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

[b-d0uw8ivxdo] .status-card {
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.03);
    padding: 1rem 1.15rem;
}

[b-d0uw8ivxdo] .status-card-warning {
    border-color: rgba(251, 191, 36, 0.28);
    background: rgba(251, 191, 36, 0.08);
}

[b-d0uw8ivxdo] .status-card h2 {
    font-size: 0.94rem;
    margin: 0 0 var(--dashboard-card-title-gap);
    color: #f3f8ff;
}

[b-d0uw8ivxdo] .status-card h1,
[b-d0uw8ivxdo] .status-card h3,
[b-d0uw8ivxdo] .status-card h4,
[b-d0uw8ivxdo] h1,
[b-d0uw8ivxdo] h2,
[b-d0uw8ivxdo] h3,
[b-d0uw8ivxdo] h4 {
    color: #f3f8ff;
}

[b-d0uw8ivxdo] .status-list,
[b-d0uw8ivxdo] .status-note,
[b-d0uw8ivxdo] .status-links {
    color: #9fb0cd;
    font-size: var(--dashboard-input-font-size);
}

[b-d0uw8ivxdo] .status-note strong {
    color: #e9f1ff;
}

[b-d0uw8ivxdo] code {
    color: #c4d0ff;
}

[b-d0uw8ivxdo] .status-note {
    margin: 0;
    line-height: var(--dashboard-card-note-line-height);
}

[b-d0uw8ivxdo] .status-note + .status-note {
    margin-top: var(--dashboard-card-note-gap);
}

[b-d0uw8ivxdo] .status-list {
    margin: 0;
    padding-left: 1rem;
    display: grid;
    gap: 0.4rem;
}

[b-d0uw8ivxdo] .status-links {
    margin: 0;
    padding-left: 1rem;
    display: grid;
    gap: 0.35rem;
}

[b-d0uw8ivxdo] .status-links a {
    color: #9eb6ff;
    text-decoration: none;
}

[b-d0uw8ivxdo] .status-links a:hover {
    color: #d8e2ff;
    text-decoration: underline;
}

[b-d0uw8ivxdo] .action-row {
    margin-top: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.65rem;
    flex-wrap: wrap;
}

[b-d0uw8ivxdo] .action-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.36rem 0.58rem;
    border-radius: 0.62rem;
    border: 1px solid rgba(98, 114, 243, 0.34);
    background: rgba(98, 114, 243, 0.12);
    color: #e7edff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.74rem;
}

[b-d0uw8ivxdo] .action-link:hover {
    background: rgba(98, 114, 243, 0.2);
    border-color: rgba(98, 114, 243, 0.5);
}

[b-d0uw8ivxdo] .action-link-muted {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.22);
    color: #d7e3ff;
}

[b-d0uw8ivxdo] .action-link-muted:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.32);
}

[b-d0uw8ivxdo] .dashboard-grid-shell {
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.95rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.02));
    overflow: hidden;
}

[b-d0uw8ivxdo] .dashboard-grid-toolbar {
    --dashboard-grid-tool-height: 2rem;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.68rem;
    padding: 0.72rem 0.84rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.015);
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
}

[b-d0uw8ivxdo] .dashboard-grid-toolbar-left,
[b-d0uw8ivxdo] .dashboard-grid-toolbar-right {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    flex-wrap: nowrap;
    white-space: nowrap;
}

[b-d0uw8ivxdo] .dashboard-grid-toolbar-right {
    margin-left: 0;
}

[b-d0uw8ivxdo] .dashboard-grid-search {
    position: relative;
    display: inline-flex;
    align-items: center;
    height: var(--dashboard-grid-tool-height);
    min-width: 13.5rem;
    width: clamp(13.5rem, 23vw, 23rem);
    max-width: 23rem;
    flex: 0 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.72rem;
    background: rgba(255, 255, 255, 0.04);
}

[b-d0uw8ivxdo] .dashboard-grid-search-icon {
    width: 0.86rem;
    height: 0.86rem;
    margin-left: 0.62rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #6f83a9;
    opacity: 0.9;
    flex-shrink: 0;
}

[b-d0uw8ivxdo] .dashboard-grid-search-icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

[b-d0uw8ivxdo] .dashboard-grid-search-input {
    width: auto;
    flex: 1 1 auto;
    min-width: 0;
    height: 100%;
    border: 0;
    outline: none;
    background: transparent;
    color: #dce6ff;
    font-size: var(--dashboard-input-font-size);
    padding: 0 0.6rem;
}

[b-d0uw8ivxdo] .dashboard-grid-search-input::placeholder {
    color: #6f84a8;
}

[b-d0uw8ivxdo] .dashboard-grid-pills {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    flex-wrap: nowrap;
}

[b-d0uw8ivxdo] .dashboard-grid-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    min-height: var(--dashboard-grid-tool-height);
    border-radius: 0.6rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.04);
    color: #9db0d2;
    font-size: 0.72rem;
    font-weight: 600;
    line-height: 1;
    padding: 0 0.62rem;
    transition: border-color 0.15s ease, background-color 0.15s ease, color 0.15s ease;
}

[b-d0uw8ivxdo] button.dashboard-grid-pill {
    cursor: pointer;
}

[b-d0uw8ivxdo] .dashboard-grid-pill:hover {
    border-color: rgba(151, 174, 255, 0.5);
    background: rgba(98, 114, 243, 0.14);
    color: #e4ebff;
}

[b-d0uw8ivxdo] .dashboard-grid-pill.is-active {
    border-color: rgba(151, 174, 255, 0.58);
    background: rgba(98, 114, 243, 0.24);
    color: #ecf1ff;
}

[b-d0uw8ivxdo] .dashboard-grid-pill:disabled {
    opacity: 0.78;
    cursor: default;
}

[b-d0uw8ivxdo] .dashboard-grid-pill-dot {
    width: 0.38rem;
    height: 0.38rem;
    border-radius: 999px;
    display: inline-flex;
    flex-shrink: 0;
}

[b-d0uw8ivxdo] .dashboard-grid-pill-dot.active {
    background: #34d399;
}

[b-d0uw8ivxdo] .dashboard-grid-pill-dot.warning {
    background: #facc15;
}

[b-d0uw8ivxdo] .dashboard-grid-pill-dot.offline {
    background: #f87171;
}

[b-d0uw8ivxdo] .dashboard-grid-pill-dot.default {
    background: #7dd3fc;
}

[b-d0uw8ivxdo] .dashboard-grid-status {
    display: inline-flex;
    align-items: center;
    gap: 0.36rem;
    white-space: nowrap;
    font-size: 0.72rem;
    font-weight: 600;
    line-height: 1;
    color: #9fb0cd;
}

[b-d0uw8ivxdo] .dashboard-grid-status-dot {
    width: 0.38rem;
    height: 0.38rem;
    border-radius: 999px;
    background: currentColor;
    display: inline-flex;
    flex-shrink: 0;
}

[b-d0uw8ivxdo] .dashboard-grid-status-label {
    color: currentColor;
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
}

[b-d0uw8ivxdo] .dashboard-grid-status.is-online,
[b-d0uw8ivxdo] .dashboard-grid-status.is-active {
    color: #34d399;
}

[b-d0uw8ivxdo] .dashboard-grid-status.is-warning {
    color: #facc15;
}

[b-d0uw8ivxdo] .dashboard-grid-status.is-offline,
[b-d0uw8ivxdo] .dashboard-grid-status.is-inactive {
    color: #f87171;
}

[b-d0uw8ivxdo] .dashboard-grid-status.is-default {
    color: #7dd3fc;
}

[b-d0uw8ivxdo] .dashboard-grid-status.is-neutral {
    color: #9fb0cd;
}

[b-d0uw8ivxdo] .dashboard-grid-select-wrap {
    display: inline-flex;
    align-items: center;
    gap: 0.42rem;
    color: #9fb0cd;
    font-size: 0.72rem;
    font-weight: 600;
}

[b-d0uw8ivxdo] .dashboard-grid-select {
    height: var(--dashboard-grid-tool-height, 2rem);
    min-height: var(--dashboard-grid-tool-height, 2rem);
    border: 1px solid var(--dashboard-input-border-color);
    border-radius: 0.62rem;
    background: var(--dashboard-input-bg-color);
    color: var(--dashboard-input-text-color);
    font-size: var(--dashboard-input-font-size);
    line-height: 1.35;
    padding: 0 1.7rem 0 0.56rem;
    min-width: 9.4rem;
    color-scheme: dark;
    outline: none;
    transition: border-color 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
}

[b-d0uw8ivxdo] .dashboard-grid-select option,
[b-d0uw8ivxdo] .dashboard-grid-select optgroup {
    color: var(--dashboard-input-text-color);
    background: var(--dashboard-input-option-bg-color);
}

[b-d0uw8ivxdo] .dashboard-grid-select option:checked {
    color: #f4f8ff;
    background: var(--dashboard-input-option-selected-bg-color);
}

[b-d0uw8ivxdo] .dashboard-grid-select option:disabled {
    color: var(--dashboard-input-option-muted-color);
    background: var(--dashboard-input-option-bg-color);
}

[b-d0uw8ivxdo] .dashboard-grid-select optgroup {
    color: var(--dashboard-input-optgroup-color);
    font-weight: 700;
}

[b-d0uw8ivxdo] .dashboard-grid-select:focus {
    border-color: var(--dashboard-input-border-focus-color);
    box-shadow: 0 0 0 2px var(--dashboard-input-focus-ring-color);
}

[b-d0uw8ivxdo] .dashboard-grid-select:disabled {
    opacity: 0.65;
    cursor: not-allowed;
}

[b-d0uw8ivxdo] .dashboard-grid-toolbar .action-link {
    min-height: var(--dashboard-grid-tool-height);
    padding: 0 0.68rem;
    gap: 0.36rem;
}

[b-d0uw8ivxdo] .dashboard-grid-refresh-icon {
    width: 0.8rem;
    height: 0.8rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    opacity: 0.9;
    flex-shrink: 0;
}

[b-d0uw8ivxdo] .dashboard-grid-refresh-icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

[b-d0uw8ivxdo] .dashboard-grid-refresh-icon.is-spinning svg {
    animation: dashboard-grid-refresh-spin-b-d0uw8ivxdo 0.85s linear infinite;
}

@keyframes dashboard-grid-refresh-spin-b-d0uw8ivxdo {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

[b-d0uw8ivxdo] .dashboard-grid-table-wrap {
    overflow-x: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(126, 164, 255, 0.65) rgba(9, 14, 29, 0.72);
}

[b-d0uw8ivxdo] .ui-grid-scrollbars {
    scrollbar-width: thin;
    scrollbar-color: rgba(126, 164, 255, 0.65) rgba(9, 14, 29, 0.72);
}

[b-d0uw8ivxdo] .dashboard-grid-table-wrap::-webkit-scrollbar,
[b-d0uw8ivxdo] .ui-grid-scrollbars::-webkit-scrollbar {
    width: 0.62rem;
    height: 0.62rem;
}

[b-d0uw8ivxdo] .dashboard-grid-table-wrap::-webkit-scrollbar-track,
[b-d0uw8ivxdo] .ui-grid-scrollbars::-webkit-scrollbar-track {
    background: rgba(9, 14, 29, 0.72);
    border-radius: 999px;
}

[b-d0uw8ivxdo] .dashboard-grid-table-wrap::-webkit-scrollbar-thumb,
[b-d0uw8ivxdo] .ui-grid-scrollbars::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, rgba(126, 164, 255, 0.65), rgba(111, 140, 219, 0.65));
    border-radius: 999px;
    border: 1px solid rgba(9, 14, 29, 0.85);
}

[b-d0uw8ivxdo] .dashboard-grid-table-wrap::-webkit-scrollbar-thumb:hover,
[b-d0uw8ivxdo] .ui-grid-scrollbars::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, rgba(149, 184, 255, 0.78), rgba(126, 164, 255, 0.78));
}

[b-d0uw8ivxdo] .dashboard-grid-table-wrap::-webkit-scrollbar-corner,
[b-d0uw8ivxdo] .ui-grid-scrollbars::-webkit-scrollbar-corner {
    background: rgba(9, 14, 29, 0.72);
}

[b-d0uw8ivxdo] .dashboard-grid-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 46rem;
}

[b-d0uw8ivxdo] .dashboard-grid-table th,
[b-d0uw8ivxdo] .dashboard-grid-table td {
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    text-align: left;
    vertical-align: middle;
    padding: 0.57rem 0.56rem;
}

[b-d0uw8ivxdo] .dashboard-grid-table thead th {
    color: #6f83a8;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.64rem;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.01);
}

[b-d0uw8ivxdo] .dashboard-grid-table tbody td {
    color: #dce7ff;
    font-size: 0.74rem;
}

[b-d0uw8ivxdo] .dashboard-grid-row {
    transition: background-color 0.15s ease;
    cursor: pointer;
}

[b-d0uw8ivxdo] .dashboard-grid-row:hover {
    background: rgba(255, 255, 255, 0.03);
}

[b-d0uw8ivxdo] .dashboard-grid-row-selected {
    background: rgba(98, 114, 243, 0.2);
}

[b-d0uw8ivxdo] .dashboard-grid-row-static {
    cursor: default;
}

[b-d0uw8ivxdo] .dashboard-grid-row-static:hover {
    background: transparent;
}

[b-d0uw8ivxdo] .dashboard-grid-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.68rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0.58rem 0.84rem;
    background: rgba(255, 255, 255, 0.015);
    flex-wrap: wrap;
}

[b-d0uw8ivxdo] .dashboard-grid-footer-note {
    color: #6f84a8;
    font-size: 0.68rem;
}

[b-d0uw8ivxdo] .dashboard-grid-pagination {
    display: inline-flex;
    align-items: center;
    gap: 0.24rem;
}

[b-d0uw8ivxdo] .dashboard-grid-page-btn {
    min-width: 1.55rem;
    height: 1.55rem;
    border-radius: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.13);
    background: rgba(255, 255, 255, 0.04);
    color: #9fb0cd;
    font-size: 0.7rem;
    font-weight: 600;
    line-height: 1;
    padding: 0 0.4rem;
}

[b-d0uw8ivxdo] .dashboard-grid-page-btn.is-active {
    border-color: rgba(151, 174, 255, 0.58);
    background: rgba(98, 114, 243, 0.24);
    color: #ecf1ff;
}

[b-d0uw8ivxdo] .dashboard-grid-page-btn:disabled {
    opacity: 0.7;
}

[b-d0uw8ivxdo] .status-kv {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.45rem 0.7rem;
    margin: 0 0 0.85rem;
}

[b-d0uw8ivxdo] .status-kv dt {
    color: #9fb0cd;
}

[b-d0uw8ivxdo] .status-kv dd {
    margin: 0;
    color: #e5edff;
}

[b-d0uw8ivxdo] .status-chip {
    display: inline-flex;
    align-items: center;
    padding: 0.2rem 0.45rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.04);
    color: #d7e3ff;
    font-size: 0.76rem;
}

[b-d0uw8ivxdo] .status-pre {
    margin: 0.45rem 0 0;
    padding: 0.6rem;
    border-radius: 0.6rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.05);
    color: #dbe7ff;
    font-size: 0.76rem;
    white-space: pre-wrap;
    word-break: break-word;
}

[b-d0uw8ivxdo] details {
    margin-top: 0.7rem;
}

[b-d0uw8ivxdo] details summary {
    cursor: pointer;
    color: #f4f8ff;
    font-weight: 600;
}

@media (max-width: 1080px) {
    .dashboard-sidebar[b-d0uw8ivxdo] {
        position: fixed;
        left: 0;
        transform: translateX(-102%);
        transition: transform 0.2s ease;
    }

    .dashboard-sidebar.is-open[b-d0uw8ivxdo] {
        transform: translateX(0);
    }

    .dashboard-overlay.is-open[b-d0uw8ivxdo] {
        opacity: 1;
        pointer-events: auto;
    }

    .mobile-menu-button[b-d0uw8ivxdo] {
        display: inline-flex;
    }

    .dashboard-topbar[b-d0uw8ivxdo] {
        padding: 0.7rem 1rem;
    }

    .topbar-search[b-d0uw8ivxdo] {
        min-width: 14.5rem;
    }

    .dashboard-content[b-d0uw8ivxdo] {
        padding: 1rem;
    }

    [b-d0uw8ivxdo] .dashboard-grid-table {
        min-width: 40rem;
    }
}

@media (max-width: 920px) {
    .topbar-search[b-d0uw8ivxdo] {
        display: none;
    }
}

@media (max-width: 760px) {
    .dashboard-topbar[b-d0uw8ivxdo] {
        height: auto;
        align-items: center;
        flex-direction: row;
        justify-content: space-between;
        gap: 0.55rem;
        padding: 0.7rem 0.95rem;
        flex-wrap: nowrap;
    }

    .dashboard-topbar-left[b-d0uw8ivxdo] {
        min-width: 0;
        flex: 1 1 auto;
        gap: 0.5rem;
        flex-wrap: nowrap;
    }

    .dashboard-topbar-right[b-d0uw8ivxdo] {
        width: auto;
        min-width: 0;
        flex: 0 0 auto;
        justify-content: flex-end;
        flex-wrap: nowrap;
        gap: 0.45rem;
    }

    .topbar-user[b-d0uw8ivxdo] {
        display: none;
    }

    .dashboard-title-block[b-d0uw8ivxdo] {
        min-width: 0;
        flex: 1 1 auto;
        display: inline-flex;
        align-items: baseline;
        gap: 0.34rem;
        overflow: hidden;
    }

    .dashboard-title[b-d0uw8ivxdo] {
        min-width: 0;
        flex: 0 1 auto;
        font-size: 0.9rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .dashboard-meta[b-d0uw8ivxdo] {
        display: none;
    }

    .topbar-back-link[b-d0uw8ivxdo] {
        flex: 0 0 auto;
        min-width: 0;
        min-height: 2.08rem;
        padding-left: 0.56rem;
        padding-right: 0.56rem;
        gap: 0.28rem;
        border-color: rgba(169, 190, 255, 0.54);
        background: rgba(103, 129, 220, 0.3);
        white-space: nowrap;
    }

    .topbar-back-link span:first-child[b-d0uw8ivxdo] {
        font-size: 0.98rem;
        line-height: 1;
        font-weight: 700;
    }

    .topbar-back-link span:last-child[b-d0uw8ivxdo] {
        display: inline;
        font-size: 0.72rem;
        line-height: 1;
    }

    [b-d0uw8ivxdo] .dashboard-grid-toolbar {
        align-items: center;
    }

    [b-d0uw8ivxdo] .dashboard-grid-toolbar-left,
    [b-d0uw8ivxdo] .dashboard-grid-toolbar-right {
        width: auto;
    }

    [b-d0uw8ivxdo] .dashboard-grid-table {
        min-width: 34rem;
    }
}

#blazor-error-ui[b-d0uw8ivxdo] {
    color-scheme: light;
    background: #fff3cd;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(15, 23, 42, 0.2);
    box-sizing: border-box;
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss[b-d0uw8ivxdo] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* /Components/Layout/AdminNavMenu.razor.rz.scp.css */
.sidebar-shell[b-v8luv3rsgf] {
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: visible;
}

.menu-brand[b-v8luv3rsgf] {
    height: var(--dashboard-header-height);
    box-sizing: border-box;
    display: flex;
    align-items: center;
    padding: 0 0.64rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.menu-brand-link[b-v8luv3rsgf] {
    align-items: center;
    gap: 0.26rem;
}

.menu-brand-logo[b-v8luv3rsgf] {
    display: block;
}

.menu-brand-partner[b-v8luv3rsgf] {
    line-height: 1;
}

.menu-brand .auth-brand-logo[b-v8luv3rsgf] {
    width: 3.45rem !important;
}

.menu-brand .auth-brand-partner[b-v8luv3rsgf] {
    font-size: 1.33rem !important;
}

.menu-scroll[b-v8luv3rsgf] {
    flex: 1;
    overflow-y: auto;
    padding: 0.92rem 0.72rem 0.95rem;
}

.menu-group[b-v8luv3rsgf] {
    margin: 0 0 0.44rem;
    padding: 0 0.58rem;
    color: #5e6f8c;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.6rem;
    font-weight: 700;
}

.menu-group-spaced[b-v8luv3rsgf] {
    margin-top: 1rem;
}

.menu-profile-subnav[b-v8luv3rsgf] {
    display: none;
}

.menu-link[b-v8luv3rsgf] {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: #92a4c3;
    text-decoration: none;
    padding: 0.53rem 0.64rem;
    border-radius: 0.78rem;
    border: 1px solid transparent;
    background-clip: padding-box;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.menu-link-icon[b-v8luv3rsgf] {
    width: 1.66rem;
    height: 1.66rem;
    border-radius: 0.58rem;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.04);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #6f82a4;
    flex-shrink: 0;
    transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.menu-link-icon svg[b-v8luv3rsgf] {
    width: 11px;
    height: 11px;
    display: block;
    shape-rendering: geometricPrecision;
}

.menu-link-text[b-v8luv3rsgf] {
    min-width: 0;
    font-size: 0.84rem;
    font-weight: 500;
    color: inherit;
    line-height: 1.24;
}

.menu-link-indicator[b-v8luv3rsgf] {
    margin-left: auto;
    width: 0.32rem;
    height: 0.32rem;
    border-radius: 999px;
    background: var(--dashboard-menu-selected-indicator);
    opacity: 0;
    transition: opacity 0.2s ease;
}

.menu-link-badge[b-v8luv3rsgf] {
    margin-left: 0.42rem;
    min-width: 1rem;
    height: 1rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 0.25rem;
    border: 1px solid rgba(239, 68, 68, 0.34);
    background: rgba(239, 68, 68, 0.18);
    color: #f87171;
    font-size: 0.6rem;
    font-weight: 700;
    line-height: 1;
}

.menu-link:hover[b-v8luv3rsgf] {
    color: var(--dashboard-menu-hover-text);
    border-color: transparent;
    background: var(--dashboard-menu-hover-bg);
    background-clip: border-box;
}

.menu-link:hover .menu-link-icon[b-v8luv3rsgf] {
    color: var(--dashboard-menu-hover-icon-color);
    border-color: var(--dashboard-menu-hover-icon-border);
}

.menu-link.active[b-v8luv3rsgf] {
    color: var(--dashboard-menu-selected-text);
    background: var(--dashboard-menu-selected-bg);
    border-color: var(--dashboard-menu-selected-border);
}

.menu-link.active .menu-link-icon[b-v8luv3rsgf] {
    color: var(--dashboard-menu-selected-icon-color);
    background: var(--dashboard-menu-selected-icon-bg);
    border-color: var(--dashboard-menu-selected-icon-border);
}

.menu-link.active .menu-link-indicator[b-v8luv3rsgf] {
    opacity: 1;
}

.menu-link.is-disabled[b-v8luv3rsgf] {
    opacity: 0.42;
    cursor: not-allowed;
    pointer-events: none;
    filter: saturate(0.72);
}

.menu-link.is-disabled .menu-link-icon[b-v8luv3rsgf] {
    color: #6f82a4;
    border-color: rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.04);
}

.menu-user[b-v8luv3rsgf] {
    padding: 0.8rem 0.7rem 0.9rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    z-index: 50;
    overflow: visible;
}

.menu-user-link[b-v8luv3rsgf] {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.5rem 0.68rem;
    border-radius: 0.78rem;
    text-decoration: none;
    border: 1px solid transparent;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.menu-user-link:hover[b-v8luv3rsgf] {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.08);
}

.menu-user-link.active[b-v8luv3rsgf] {
    background: var(--dashboard-menu-selected-bg);
    border-color: var(--dashboard-menu-selected-border);
}

.menu-user-link.active .menu-user-name[b-v8luv3rsgf] {
    color: var(--dashboard-menu-selected-text);
}

.menu-user-link.active .menu-user-role[b-v8luv3rsgf] {
    color: #8ea3c9;
}

.menu-user-link.active .menu-link-indicator[b-v8luv3rsgf],
.menu-user-link:focus-visible .menu-link-indicator[b-v8luv3rsgf] {
    opacity: 1;
}

.menu-user-avatar[b-v8luv3rsgf] {
    width: 1.95rem;
    height: 1.95rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid rgba(98, 114, 243, 0.35);
    background: linear-gradient(135deg, #7f8dff, #4f56e8);
    color: #f8fbff;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    overflow: hidden;
}

.menu-user-avatar.has-custom-avatar[b-v8luv3rsgf] {
    border: none;
    background: transparent;
}

.menu-user-avatar-image[b-v8luv3rsgf] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.menu-user-meta[b-v8luv3rsgf] {
    flex: 1;
    min-width: 0;
    display: grid;
}

.menu-user-link .menu-link-indicator[b-v8luv3rsgf] {
    flex: 0 0 auto;
    margin-left: 0.52rem;
    width: 0.4rem;
    height: 0.4rem;
    box-shadow: 0 0 0 2px rgba(12, 20, 44, 0.68);
}

.menu-user-name[b-v8luv3rsgf] {
    color: #dce6ff;
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.menu-user-role[b-v8luv3rsgf] {
    color: #687a9a;
    font-size: 0.7rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (max-width: 1080px) {
    .menu-profile-subnav[b-v8luv3rsgf] {
        display: grid;
        gap: 0.2rem;
    }

    .menu-profile-subnav .menu-link[b-v8luv3rsgf] {
        padding-left: 0.56rem;
    }

    .menu-profile-subnav-group[b-v8luv3rsgf] {
        display: block;
    }
}


button.menu-user-link[b-v8luv3rsgf] {
    width: 100%;
    border: 0;
    background: transparent;
    cursor: pointer;
    text-align: left;
    font: inherit;
    color: inherit;
}

.menu-user-link .menu-link-indicator[b-v8luv3rsgf] {
    display: none;
}
/* /Components/Layout/MainLayout.razor.rz.scp.css */
.page[b-e1nm54kry3] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-e1nm54kry3] {
    flex: 1;
}

.sidebar[b-e1nm54kry3] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-e1nm54kry3] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-e1nm54kry3]  a, .top-row[b-e1nm54kry3]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

    .top-row[b-e1nm54kry3]  a:hover, .top-row[b-e1nm54kry3]  .btn-link:hover {
        text-decoration: underline;
    }

    .top-row[b-e1nm54kry3]  a:first-child {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row[b-e1nm54kry3] {
        justify-content: space-between;
    }

    .top-row[b-e1nm54kry3]  a, .top-row[b-e1nm54kry3]  .btn-link {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-e1nm54kry3] {
        flex-direction: row;
    }

    .sidebar[b-e1nm54kry3] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-e1nm54kry3] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row.auth[b-e1nm54kry3]  a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    .top-row[b-e1nm54kry3], article[b-e1nm54kry3] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}

#blazor-error-ui[b-e1nm54kry3] {
    color-scheme: light only;
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss[b-e1nm54kry3] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-kf1yjjbbgh],
.components-reconnect-repeated-attempt-visible[b-kf1yjjbbgh],
.components-reconnect-failed-visible[b-kf1yjjbbgh],
.components-pause-visible[b-kf1yjjbbgh],
.components-resume-failed-visible[b-kf1yjjbbgh],
.components-rejoining-animation[b-kf1yjjbbgh] {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-kf1yjjbbgh],
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-kf1yjjbbgh],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-kf1yjjbbgh],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-kf1yjjbbgh],
#components-reconnect-modal.components-reconnect-retrying[b-kf1yjjbbgh],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-kf1yjjbbgh],
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-kf1yjjbbgh],
#components-reconnect-modal.components-reconnect-failed[b-kf1yjjbbgh],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-kf1yjjbbgh] {
    display: block;
}


#components-reconnect-modal[b-kf1yjjbbgh] {
    background-color: white;
    width: 20rem;
    margin: 20vh auto;
    padding: 2rem;
    border: 0;
    border-radius: 0.5rem;
    box-shadow: 0 3px 6px 2px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: display 0.5s allow-discrete, overlay 0.5s allow-discrete;
    animation: components-reconnect-modal-fadeOutOpacity-b-kf1yjjbbgh 0.5s both;
    &[open]

{
    animation: components-reconnect-modal-slideUp-b-kf1yjjbbgh 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-kf1yjjbbgh 0.5s ease-in-out 0.3s;
    animation-fill-mode: both;
}

}

#components-reconnect-modal[b-kf1yjjbbgh]::backdrop {
    background-color: rgba(0, 0, 0, 0.4);
    animation: components-reconnect-modal-fadeInOpacity-b-kf1yjjbbgh 0.5s ease-in-out;
    opacity: 1;
}

@keyframes components-reconnect-modal-slideUp-b-kf1yjjbbgh {
    0% {
        transform: translateY(30px) scale(0.95);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes components-reconnect-modal-fadeInOpacity-b-kf1yjjbbgh {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes components-reconnect-modal-fadeOutOpacity-b-kf1yjjbbgh {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.components-reconnect-container[b-kf1yjjbbgh] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#components-reconnect-modal p[b-kf1yjjbbgh] {
    margin: 0;
    text-align: center;
}

#components-reconnect-modal button[b-kf1yjjbbgh] {
    border: 0;
    background-color: #6b9ed2;
    color: white;
    padding: 4px 24px;
    border-radius: 4px;
}

    #components-reconnect-modal button:hover[b-kf1yjjbbgh] {
        background-color: #3b6ea2;
    }

    #components-reconnect-modal button:active[b-kf1yjjbbgh] {
        background-color: #6b9ed2;
    }

.components-rejoining-animation[b-kf1yjjbbgh] {
    position: relative;
    width: 80px;
    height: 80px;
}

    .components-rejoining-animation div[b-kf1yjjbbgh] {
        position: absolute;
        border: 3px solid #0087ff;
        opacity: 1;
        border-radius: 50%;
        animation: components-rejoining-animation-b-kf1yjjbbgh 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .components-rejoining-animation div:nth-child(2)[b-kf1yjjbbgh] {
            animation-delay: -0.5s;
        }

@keyframes components-rejoining-animation-b-kf1yjjbbgh {
    0% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    4.9% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    5% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 1;
    }

    100% {
        top: 0px;
        left: 0px;
        width: 80px;
        height: 80px;
        opacity: 0;
    }
}
/* /Components/Pages/AdminAccess.razor.rz.scp.css */
.profile-admin-page[b-w8tcn87bsg] {
    gap: 0.95rem;
}

.profile-admin-layout[b-w8tcn87bsg] {
    display: grid;
    grid-template-columns: 12.7rem minmax(0, 1fr);
    gap: 0.95rem;
    align-items: start;
}

.profile-admin-sidebar[b-w8tcn87bsg] {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 0.92rem 0.72rem 0.95rem;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.02);
    position: sticky;
    /* Scrollport is .dashboard-content (already below the topbar), not the viewport. */
    top: 0;
    align-self: start;
}

.profile-nav-section-title[b-w8tcn87bsg] {
    margin: 0 0 0.44rem;
    padding: 0 0.58rem;
    color: #5e6f8c;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.6rem;
    font-weight: 700;
}

.profile-nav-section-title-spaced[b-w8tcn87bsg] {
    margin-top: 1rem;
}

.profile-nav-link[b-w8tcn87bsg] {
    width: 100%;
    border: 1px solid transparent;
    border-radius: 0.78rem;
    background: transparent;
    background-clip: padding-box;
    color: #90a1c0;
    text-align: left;
    text-decoration: none;
    font-size: 0.84rem;
    font-weight: 500;
    line-height: 1.24;
    padding: 0.53rem 0.64rem;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    cursor: pointer;
    transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.profile-nav-link:hover[b-w8tcn87bsg],
.profile-nav-link:focus[b-w8tcn87bsg],
.profile-nav-link:active[b-w8tcn87bsg],
.profile-nav-link.active[b-w8tcn87bsg] {
    text-decoration: none;
}

.profile-nav-link:hover[b-w8tcn87bsg] {
    color: var(--dashboard-menu-hover-text);
    border-color: transparent;
    background: var(--dashboard-menu-hover-bg);
    background-clip: border-box;
}

.profile-nav-link.active[b-w8tcn87bsg] {
    color: var(--dashboard-menu-selected-text);
    background: var(--dashboard-menu-selected-bg);
    border-color: var(--dashboard-menu-selected-border);
}

.profile-nav-icon[b-w8tcn87bsg] {
    width: 1.66rem;
    height: 1.66rem;
    border-radius: 0.58rem;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.04);
    color: #6f82a4;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.profile-nav-icon svg[b-w8tcn87bsg] {
    width: 11px;
    height: 11px;
    display: block;
    shape-rendering: geometricPrecision;
}

.profile-nav-link.active .profile-nav-icon[b-w8tcn87bsg] {
    background: var(--dashboard-menu-selected-icon-bg);
    color: var(--dashboard-menu-selected-icon-color);
    border-color: var(--dashboard-menu-selected-icon-border);
}

.profile-nav-link:hover .profile-nav-icon[b-w8tcn87bsg] {
    color: var(--dashboard-menu-hover-icon-color);
    border-color: var(--dashboard-menu-hover-icon-border);
}

.profile-nav-link.is-disabled[b-w8tcn87bsg],
.profile-nav-link:disabled[b-w8tcn87bsg] {
    opacity: 0.42;
    cursor: not-allowed;
    pointer-events: none;
    filter: saturate(0.72);
}

.profile-nav-link.is-disabled:hover[b-w8tcn87bsg],
.profile-nav-link:disabled:hover[b-w8tcn87bsg] {
    color: #90a1c0;
    border-color: transparent;
    background: transparent;
}

.profile-nav-link.is-disabled .profile-nav-icon[b-w8tcn87bsg],
.profile-nav-link:disabled .profile-nav-icon[b-w8tcn87bsg],
.profile-nav-link.is-disabled:hover .profile-nav-icon[b-w8tcn87bsg],
.profile-nav-link:disabled:hover .profile-nav-icon[b-w8tcn87bsg] {
    color: #6f82a4;
    border-color: rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.04);
}

.profile-nav-label[b-w8tcn87bsg] {
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.profile-nav-pill[b-w8tcn87bsg] {
    margin-left: auto;
    min-width: 1.1rem;
    height: 1.1rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.66rem;
    border: 1px solid rgba(98, 114, 243, 0.35);
    background: rgba(98, 114, 243, 0.16);
    color: #9fb2ff;
}

.profile-nav-divider[b-w8tcn87bsg] {
    margin: 0.35rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.profile-danger-button[b-w8tcn87bsg] {
    width: 100%;
    border: 1px solid transparent;
    border-radius: 0.78rem;
    background: transparent;
    color: rgba(248, 113, 113, 0.8);
    font-size: 0.84rem;
    font-weight: 500;
    line-height: 1.24;
    padding: 0.53rem 0.64rem;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    text-align: left;
    cursor: pointer;
    transition: color 0.2s ease, background 0.2s ease;
}

.profile-danger-button:hover[b-w8tcn87bsg] {
    color: #f87171;
    background: rgba(239, 68, 68, 0.05);
}

.profile-admin-sidebar form[b-w8tcn87bsg] {
    margin: 0;
    width: 100%;
}

.profile-sign-out-link[b-w8tcn87bsg] {
    margin-top: 0;
    text-decoration: none;
}

.profile-sign-out-link .profile-nav-icon[b-w8tcn87bsg] {
    color: #8ea3c9;
}

.profile-danger-icon[b-w8tcn87bsg] {
    width: 1.66rem;
    height: 1.66rem;
    border-radius: 0.58rem;
    border: 1px solid rgba(239, 68, 68, 0.16);
    background: rgba(239, 68, 68, 0.08);
    color: rgba(239, 68, 68, 0.72);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.profile-danger-icon svg[b-w8tcn87bsg] {
    width: 11px;
    height: 11px;
    display: block;
    shape-rendering: geometricPrecision;
}

.profile-admin-content[b-w8tcn87bsg] {
    display: grid;
    gap: 0.95rem;
}

.profile-section-card[b-w8tcn87bsg] {
    display: grid;
    gap: 0.85rem;
    padding: 1rem 1.1rem;
}

.profile-section-header-row[b-w8tcn87bsg] {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.8rem;
}

.profile-section-header-row h2[b-w8tcn87bsg] {
    margin: 0;
}

.profile-field-grid[b-w8tcn87bsg] {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.7rem;
}

.profile-field[b-w8tcn87bsg] {
    display: grid;
    gap: 0.28rem;
}

.profile-field-wide[b-w8tcn87bsg],
.profile-invite-full[b-w8tcn87bsg] {
    grid-column: 1 / -1;
}

.profile-field span[b-w8tcn87bsg] {
    color: #9fb0cd;
    font-size: 0.74rem;
    font-weight: 600;
}

.profile-field input:not([type="checkbox"]):not([type="radio"]):not([type="file"])[b-w8tcn87bsg],
.profile-field select[b-w8tcn87bsg] {
    width: 100%;
    border-radius: 0.65rem;
    border: 1px solid rgba(130, 151, 190, 0.28);
    background: rgba(10, 16, 31, 0.72);
    color: #edf3ff;
    padding: 0.55rem 0.7rem;
    font-size: 0.84rem;
}

.profile-field input:not([type="checkbox"]):not([type="radio"]):not([type="file"]):focus[b-w8tcn87bsg],
.profile-field select:focus[b-w8tcn87bsg] {
    outline: none;
    border-color: rgba(98, 114, 243, 0.55);
    box-shadow: 0 0 0 2px rgba(98, 114, 243, 0.18);
}

.di-status-chip[b-w8tcn87bsg] {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    min-height: 1.4rem;
    padding: 0 0.55rem;
    border-radius: 999px;
    border: 1px solid transparent;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.di-status-operational[b-w8tcn87bsg] {
    color: #6ee7b7;
    border-color: rgba(52, 211, 153, 0.35);
    background: rgba(16, 185, 129, 0.16);
}

.di-status-inactive[b-w8tcn87bsg] {
    color: #fca5a5;
    border-color: rgba(248, 113, 113, 0.35);
    background: rgba(153, 27, 27, 0.22);
}

.stores-error[b-w8tcn87bsg] {
    margin: 0;
    color: #fecaca;
    font-size: 0.82rem;
}

.stores-state-cell[b-w8tcn87bsg] {
    color: #8ea3c9;
    text-align: center;
    padding: 1.1rem 0.75rem !important;
}

.action-row[b-w8tcn87bsg] {
    display: flex;
    align-items: center;
    gap: 0.55rem;
}

.profile-message-card[b-w8tcn87bsg] {
    padding: 0.7rem 0.95rem;
}

.profile-message-card p[b-w8tcn87bsg] {
    margin: 0;
    font-size: 0.78rem;
    height: 0.95rem;
    accent-color: #6272f3;
}

.profile-team-table td:nth-child(2)[b-w8tcn87bsg],
.profile-team-table td:nth-child(3)[b-w8tcn87bsg],
.profile-team-table td:nth-child(4)[b-w8tcn87bsg] {
    white-space: nowrap;
    color: #b4c5e4;
    font-size: 0.76rem;
}

.profile-team-table td:last-child[b-w8tcn87bsg] {
    min-width: 7.8rem;
}

.profile-team-table td strong[b-w8tcn87bsg] {
    display: block;
    color: #edf3ff;
}

.profile-team-member-cell[b-w8tcn87bsg] {
    display: flex;
    align-items: center;
    gap: 0.58rem;
    min-width: 0;
}

.profile-team-member-avatar[b-w8tcn87bsg] {
    width: 2rem;
    height: 2rem;
    border-radius: 999px;
    object-fit: cover;
    object-position: center;
    flex-shrink: 0;
    display: block;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(125, 148, 191, 0.36);
}

.profile-team-role-cell[b-w8tcn87bsg] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.28rem;
}

.profile-team-member-details[b-w8tcn87bsg] {
    display: grid;
    gap: 0.12rem;
    min-width: 0;
}

.profile-team-table td:first-child span[b-w8tcn87bsg] {
    display: block;
    color: #7f93b9;
    font-size: 0.7rem;
}

.profile-team-role-chip[b-w8tcn87bsg] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 1.34rem;
    padding: 0 0.56rem;
    border-radius: 999px;
    border: 1px solid transparent;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    line-height: 1;
    white-space: nowrap;
}

.profile-team-role-chip-leader[b-w8tcn87bsg] {
    color: #9cbcff;
    border-color: rgba(96, 143, 255, 0.42);
    background: rgba(49, 79, 180, 0.28);
}

.profile-team-role-chip-support[b-w8tcn87bsg] {
    color: #d69eff;
    border-color: rgba(183, 98, 255, 0.42);
    background: rgba(120, 53, 193, 0.28);
}

.profile-team-role-chip-member[b-w8tcn87bsg] {
    color: #aab8d3;
    border-color: rgba(103, 127, 168, 0.34);
    background: rgba(46, 64, 98, 0.34);
}

.profile-team-role-chip-neutral[b-w8tcn87bsg] {
    color: #aec0df;
    border-color: rgba(130, 151, 190, 0.34);
    background: rgba(58, 75, 111, 0.32);
}

.profile-team-invites-table td:nth-child(2)[b-w8tcn87bsg],
.profile-team-invites-table td:nth-child(3)[b-w8tcn87bsg],
.profile-team-invites-table td:nth-child(4)[b-w8tcn87bsg],
.profile-team-invites-table td:nth-child(5)[b-w8tcn87bsg] {
    white-space: nowrap;
    color: #b4c5e4;
    font-size: 0.76rem;
}

.profile-team-invites-table td:last-child[b-w8tcn87bsg] {
    min-width: 6.8rem;
}

.profile-team-invites-actions[b-w8tcn87bsg] {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.profile-invite-status-link[b-w8tcn87bsg] {
    border: 0;
    padding: 0;
    margin: 0;
    background: transparent;
    color: inherit;
    font: inherit;
    line-height: inherit;
    cursor: pointer;
}

.profile-invite-status-link:hover .dashboard-grid-status-label[b-w8tcn87bsg] {
    text-decoration: underline;
}

.profile-invite-status-link:focus-visible[b-w8tcn87bsg] {
    outline: 1px solid rgba(148, 163, 184, 0.75);
    outline-offset: 2px;
    border-radius: 0.2rem;
}

.profile-team-invites-error[b-w8tcn87bsg] {
    margin: 0;
    border-radius: 0.65rem;
    padding: 0.5rem 0.65rem;
    border: 1px solid rgba(248, 113, 113, 0.36);
    color: #fecaca;
    background: rgba(153, 27, 27, 0.28);
    font-size: 0.76rem;
}

.profile-team-invites-empty[b-w8tcn87bsg] {
    margin: 0;
    min-height: 2.2rem;
    display: flex;
    align-items: center;
    padding-left: 0.56rem;
    font-size: 0.72rem;
}

.profile-role-permissions[b-w8tcn87bsg] {
    gap: 0.68rem;
}

.profile-role-permissions-subtitle[b-w8tcn87bsg] {
    margin: -0.38rem 0 0;
    font-size: var(--dashboard-input-font-size);
    color: #7286ab;
}

.profile-role-permissions-grid[b-w8tcn87bsg] {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.62rem;
}

.profile-role-permission-card[b-w8tcn87bsg] {
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.78rem;
    padding: 0.74rem 0.82rem;
    background: rgba(255, 255, 255, 0.03);
    display: grid;
    gap: 0.62rem;
}

.profile-role-permission-card-leader[b-w8tcn87bsg] {
    background: rgba(98, 114, 243, 0.07);
    border-color: rgba(98, 114, 243, 0.2);
}

.profile-role-permission-card-support[b-w8tcn87bsg] {
    background: rgba(168, 85, 247, 0.07);
    border-color: rgba(168, 85, 247, 0.2);
}

.profile-role-permission-card-member[b-w8tcn87bsg] {
    background: rgba(100, 116, 139, 0.07);
    border-color: rgba(100, 116, 139, 0.2);
}

.profile-role-permission-heading[b-w8tcn87bsg] {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.52rem;
}

.profile-role-permission-heading h3[b-w8tcn87bsg] {
    margin: 0;
    color: #edf3ff;
    font-size: var(--dashboard-input-font-size);
    font-weight: 700;
}

.profile-role-permission-card-leader .profile-role-permission-heading h3[b-w8tcn87bsg] {
    color: #a9baff;
}

.profile-role-permission-card-support .profile-role-permission-heading h3[b-w8tcn87bsg] {
    color: #d7a9ff;
}

.profile-role-permission-card-member .profile-role-permission-heading h3[b-w8tcn87bsg] {
    color: #c2cfde;
}

.profile-role-permission-icon[b-w8tcn87bsg] {
    width: 1.45rem;
    height: 1.45rem;
    border-radius: 0.42rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.08);
    color: #bdd0ff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.profile-role-permission-icon svg[b-w8tcn87bsg] {
    width: 0.76rem;
    height: 0.76rem;
    display: block;
}

.profile-role-permission-card-leader .profile-role-permission-icon[b-w8tcn87bsg] {
    color: #9fb2ff;
    background: rgba(98, 114, 243, 0.16);
    border-color: rgba(98, 114, 243, 0.28);
}

.profile-role-permission-card-support .profile-role-permission-icon[b-w8tcn87bsg] {
    color: #d0a5ff;
    background: rgba(168, 85, 247, 0.16);
    border-color: rgba(168, 85, 247, 0.28);
}

.profile-role-permission-card-member .profile-role-permission-icon[b-w8tcn87bsg] {
    color: #afbdd0;
    background: rgba(100, 116, 139, 0.16);
    border-color: rgba(100, 116, 139, 0.28);
}

.profile-role-permission-list[b-w8tcn87bsg] {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.42rem;
}

.profile-role-permission-list li[b-w8tcn87bsg] {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    column-gap: 0.44rem;
    color: #95a7c9;
    font-size: var(--dashboard-input-font-size);
}

.profile-role-permission-mark[b-w8tcn87bsg] {
    width: 0.72rem;
    min-width: 0.72rem;
    height: 0.72rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    font-weight: 700;
    margin-top: 0;
}

.profile-role-permission-list li.is-allowed .profile-role-permission-mark[b-w8tcn87bsg] {
    color: #35f6c5;
}

.profile-role-permission-list li.is-restricted .profile-role-permission-mark[b-w8tcn87bsg] {
    color: #6f809f;
}

.profile-role-permission-list li.is-restricted[b-w8tcn87bsg] {
    color: #6f809f;
}

.profile-role-permissions .status-note[b-w8tcn87bsg] {
    font-size: var(--dashboard-input-font-size);
    color: #8fa2c5;
}

.profile-invite-backdrop[b-w8tcn87bsg] {
    position: fixed;
    inset: 0;
    background: rgba(6, 10, 22, 0.82);
    -webkit-backdrop-filter: blur(3px);
    backdrop-filter: blur(3px);
    display: grid;
    align-items: center;
    justify-items: center;
    padding: 1rem;
    z-index: 1200;
}

.profile-invite-backdrop.is-submitting[b-w8tcn87bsg] {
    cursor: progress;
}

.profile-invite-dialog[b-w8tcn87bsg] {
    width: min(36rem, 100%);
    max-height: calc(100vh - 2rem);
    overflow: auto;
    margin: 0;
    border: 1px solid rgba(98, 114, 243, 0.34);
    background: rgba(15, 23, 42, 0.96);
    box-shadow: 0 24px 48px rgba(3, 7, 18, 0.5);
}

.profile-invite-dialog .action-link:disabled[b-w8tcn87bsg] {
    opacity: 0.58;
    cursor: not-allowed;
    pointer-events: none;
}

.profile-invite-dialog-header[b-w8tcn87bsg] {
    margin-bottom: 0.15rem;
}

.profile-invite-dialog-title-wrap[b-w8tcn87bsg] {
    min-width: 0;
    flex: 1;
}

.profile-invite-grid[b-w8tcn87bsg] {
    margin-top: 0.1rem;
}

.profile-invite-tenant-list[b-w8tcn87bsg] {
    display: grid;
    gap: 0.4rem;
    max-height: 12.5rem;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 0.1rem;
    min-width: 0;
}

.profile-invite-tenant-row[b-w8tcn87bsg] {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin: 0;
    border: 1px solid rgba(122, 149, 211, 0.28);
    border-radius: 0.7rem;
    background: rgba(8, 16, 34, 0.72);
    color: #edf4ff;
    padding: 0.5rem 0.65rem;
    cursor: pointer;
    min-width: 0;
    transition: border-color 0.16s ease, background 0.16s ease;
}

.profile-invite-tenant-row:hover:not(.is-disabled)[b-w8tcn87bsg],
.profile-invite-tenant-row.is-selected[b-w8tcn87bsg] {
    border-color: rgba(98, 114, 243, 0.55);
    background: rgba(98, 114, 243, 0.14);
}

.profile-invite-tenant-row.is-disabled[b-w8tcn87bsg] {
    opacity: 0.58;
    cursor: not-allowed;
}

.profile-invite-tenant-row input[type="checkbox"][b-w8tcn87bsg] {
    width: 0.95rem;
    height: 0.95rem;
    min-width: 0.95rem;
    max-width: 0.95rem;
    margin: 0;
    padding: 0;
    flex: 0 0 0.95rem;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    accent-color: #6272f3;
    -webkit-appearance: checkbox;
    appearance: auto;
}

.profile-invite-tenant-text[b-w8tcn87bsg] {
    display: grid;
    gap: 0.12rem;
    min-width: 0;
    flex: 1;
}

.profile-invite-tenant-title[b-w8tcn87bsg] {
    font-weight: 600;
    color: #edf4ff;
    font-size: 0.84rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.profile-invite-tenant-meta[b-w8tcn87bsg] {
    color: #8ea6cf;
    font-size: 0.76rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (max-width: 920px) {
    .profile-admin-layout[b-w8tcn87bsg] {
        grid-template-columns: 1fr;
    }

    .profile-admin-sidebar[b-w8tcn87bsg] {
        position: static;
    }

    .profile-field-grid[b-w8tcn87bsg] {
        grid-template-columns: 1fr;
    }

    .profile-section-header-row[b-w8tcn87bsg] {
        flex-direction: column;
        align-items: flex-start;
    }
}

.profile-field-hint[b-w8tcn87bsg] {
    display: block;
    margin-top: 0.32rem;
    font-size: 0.72rem;
    line-height: 1.25;
}

.profile-field-hint-error[b-w8tcn87bsg] {
    color: #fca5a5;
}

.profile-invite-error[b-w8tcn87bsg] {
    margin: 0;
    border-radius: 0.65rem;
    padding: 0.5rem 0.65rem;
    border: 1px solid rgba(248, 113, 113, 0.36);
    color: #fecaca;
    background: rgba(153, 27, 27, 0.28);
    font-size: 0.76rem;
}

.profile-invite-primary-error[b-w8tcn87bsg] {
    margin-top: 0.7rem;
    margin-bottom: 0.75rem;
}

.profile-invite-issue-error[b-w8tcn87bsg] {
    margin-top: 0.4rem;
    margin-bottom: 0.45rem;
}

.profile-invite-issue-dialog[b-w8tcn87bsg] {
    width: min(34rem, 100%);
}

.profile-invite-notification-dialog .profile-invite-dialog-header[b-w8tcn87bsg] {
    margin-bottom: 0.9rem;
}

.profile-invite-notification-dialog .profile-invite-dialog-header h2[b-w8tcn87bsg] {
    margin-bottom: 0.35rem;
}

.profile-invite-notification-subtitle[b-w8tcn87bsg] {
    margin-top: 0;
    margin-bottom: 0;
}

.profile-invite-issue-details[b-w8tcn87bsg] {
    display: grid;
    gap: 0.35rem;
}

.profile-avatar-row[b-w8tcn87bsg] {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.profile-avatar-preview-shell[b-w8tcn87bsg] {
    position: relative;
    width: 6rem;
    height: 6rem;
    flex-shrink: 0;
}

.profile-avatar-preview-frame[b-w8tcn87bsg] {
    width: 100%;
    height: 100%;
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 0 2px rgba(98, 114, 243, 0.3);
}

.profile-avatar-preview[b-w8tcn87bsg] {
    width: 100%;
    height: 100%;
    border-radius: 0;
    object-fit: contain;
    object-position: center;
    border: 0;
}

.profile-avatar-badge[b-w8tcn87bsg] {
    position: absolute;
    right: -0.35rem;
    bottom: -0.35rem;
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 0.72rem;
    border: 2px solid #060d1f;
    background: linear-gradient(135deg, #7f8dff, #6272f3);
    color: #edf3ff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-sizing: border-box;
}

.profile-avatar-badge svg[b-w8tcn87bsg] {
    width: 0.82rem;
    height: 0.82rem;
}

.profile-avatar-content[b-w8tcn87bsg] {
    flex: 1;
    min-width: 0;
    display: grid;
    gap: 0.2rem;
}

.profile-avatar-name[b-w8tcn87bsg] {
    margin: 0;
    color: #edf3ff;
    font-size: 1.08rem;
    font-weight: 700;
}

.profile-avatar-meta[b-w8tcn87bsg] {
    margin: 0;
    color: #7f93b9;
    font-size: 0.72rem;
    line-height: 1.35;
}

.profile-avatar-actions[b-w8tcn87bsg] {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 0.35rem;
    flex-wrap: wrap;
}

[b-w8tcn87bsg] .profile-avatar-file-input {
    position: absolute;
    width: 0.1px;
    height: 0.1px;
    opacity: 0;
    overflow: hidden;
    z-index: -1;
}

.profile-avatar-upload-button[b-w8tcn87bsg] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.45rem 0.86rem;
    border-radius: 0.62rem;
    border: 1px solid rgba(98, 114, 243, 0.32);
    background: rgba(98, 114, 243, 0.15);
    color: #a5bbfc;
    font-size: 0.76rem;
    font-weight: 700;
    text-decoration: none;
    line-height: 1;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.profile-avatar-upload-button:hover[b-w8tcn87bsg] {
    background: rgba(98, 114, 243, 0.23);
    border-color: rgba(98, 114, 243, 0.45);
    color: #c5d4ff;
}

.profile-avatar-remove-button[b-w8tcn87bsg] {
    border: 0;
    background: transparent;
    color: #7f93b9;
    font-size: 0.74rem;
    font-weight: 500;
    line-height: 1;
    padding: 0.45rem 0.52rem;
    border-radius: 0.62rem;
    cursor: pointer;
    transition: color 0.2s ease, background 0.2s ease;
}

.profile-avatar-remove-button:hover[b-w8tcn87bsg] {
    color: #c7d5f6;
    background: rgba(255, 255, 255, 0.05);
}

.profile-avatar-remove-button:disabled[b-w8tcn87bsg] {
    opacity: 0.45;
    cursor: not-allowed;
}

.profile-avatar-feedback[b-w8tcn87bsg] {
    margin: 0.2rem 0 0;
    color: #8ea1c4;
    font-size: 0.7rem;
}

.profile-avatar-feedback.is-error[b-w8tcn87bsg] {
    color: #fca5a5;
}

.profile-form[b-w8tcn87bsg] {
    display: grid;
    gap: 0.75rem;
}

.profile-tenant-empty[b-w8tcn87bsg] {
    display: grid;
    gap: 0.35rem;
    padding: 0.35rem 0 0.15rem;
}

.profile-tenant-badges[b-w8tcn87bsg] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-top: -0.15rem;
}

.profile-tenant-chip[b-w8tcn87bsg] {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    min-height: 1.4rem;
    padding: 0 0.55rem;
    border-radius: 999px;
    border: 1px solid transparent;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.profile-tenant-chip-default[b-w8tcn87bsg] {
    color: #9fb2ff;
    border-color: rgba(98, 114, 243, 0.35);
    background: rgba(98, 114, 243, 0.16);
}

.profile-tenant-chip-ready[b-w8tcn87bsg] {
    color: #6ee7b7;
    border-color: rgba(52, 211, 153, 0.35);
    background: rgba(16, 185, 129, 0.16);
}

.profile-tenant-field-grid input[readonly][b-w8tcn87bsg] {
    color: #c5d4ef;
    cursor: default;
}

.profile-tenant-warning[b-w8tcn87bsg] {
    margin: 0;
    border-radius: 0.65rem;
    padding: 0.5rem 0.65rem;
    border: 1px solid rgba(248, 113, 113, 0.36);
    color: #fecaca;
    background: rgba(153, 27, 27, 0.28);
    font-size: 0.76rem;
}

.profile-tenant-domains-table td:nth-child(1)[b-w8tcn87bsg],
.profile-tenant-domains-table td:nth-child(3)[b-w8tcn87bsg] {
    white-space: nowrap;
    color: #b4c5e4;
    font-size: 0.76rem;
}

.profile-tenant-domains-table td:nth-child(2)[b-w8tcn87bsg] {
    color: #edf3ff;
    font-size: 0.78rem;
}

.profile-tenant-portal-link[b-w8tcn87bsg] {
    color: #9fb2ff;
    text-decoration: none;
    font-size: 0.76rem;
    font-weight: 600;
}

.profile-tenant-portal-link:hover[b-w8tcn87bsg] {
    color: #c5d4ff;
    text-decoration: underline;
}

@media (max-width: 760px) {
    .profile-avatar-row[b-w8tcn87bsg] {
        flex-direction: column;
        align-items: flex-start;
    }
}
/* /Components/Pages/AdminCustomers.razor.rz.scp.css */
.customers-page[b-lcyatw7e6p] {
    display: flex;
    flex-direction: column;
    gap: 0.82rem;
    min-height: 0;
}

/* Fill the content viewport under the topbar so the grid scrolls internally
   and the browser/content area does not get an outer scrollbar. */
.customers-page:has(.customers-grid-shell)[b-lcyatw7e6p] {
    height: calc(100dvh - var(--dashboard-header-height) - 2.9rem);
    max-height: calc(100dvh - var(--dashboard-header-height) - 2.9rem);
    overflow: hidden;
}

.customers-panel[b-lcyatw7e6p] {
    border-radius: 0.9rem;
    border: 1px solid rgba(116, 139, 190, 0.3);
    background:
        radial-gradient(circle at 94% -12%, rgba(94, 120, 214, 0.21), transparent 44%),
        linear-gradient(160deg, rgba(16, 25, 47, 0.93), rgba(11, 16, 32, 0.95));
    color: #d9e7ff;
}

.customers-panel h1[b-lcyatw7e6p],
.customers-panel h2[b-lcyatw7e6p],
.customers-panel strong[b-lcyatw7e6p] {
    color: #f2f8ff;
}

.customers-state-card[b-lcyatw7e6p] {
    padding: 1rem;
}

.customers-header-card[b-lcyatw7e6p] {
    flex: 0 0 auto;
    padding: 0.9rem 1rem;
}

.customers-header-shell[b-lcyatw7e6p] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.customers-header-title-wrap h1[b-lcyatw7e6p] {
    margin: 0;
    font-size: 1.1rem;
}

.customers-header-title-wrap p[b-lcyatw7e6p] {
    margin: 0.35rem 0 0;
}

.customers-domain-chip[b-lcyatw7e6p] {
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.33);
    background: rgba(15, 23, 42, 0.58);
    color: #a6bddf;
    font-size: var(--dashboard-text-xs);
    letter-spacing: 0.04em;
    padding: 0.2rem 0.55rem;
}

.customers-grid-shell[b-lcyatw7e6p] {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    min-height: 0;
    overflow: hidden;
}

.customers-toolbar[b-lcyatw7e6p] {
    flex: 0 0 auto;
}

.customers-toolbar-left[b-lcyatw7e6p] {
    flex: 1 1 auto;
    min-width: 0;
}

.customers-toolbar-right[b-lcyatw7e6p] {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    flex-wrap: wrap;
}

.customers-inactive-wrap[b-lcyatw7e6p] {
    gap: 0.42rem;
}

.customers-inactive-checkbox[b-lcyatw7e6p] {
    width: 1rem;
    height: 1rem;
    accent-color: #6272f3;
    cursor: pointer;
}

.customers-export-group[b-lcyatw7e6p] {
    display: inline-flex;
    align-items: center;
    gap: 0.34rem;
}

.customers-export-btn[b-lcyatw7e6p] {
    display: inline-flex;
    align-items: center;
    gap: 0.32rem;
    min-width: 2.3rem;
    justify-content: center;
    padding-left: 0.6rem;
    padding-right: 0.6rem;
}

.customers-export-icon[b-lcyatw7e6p] {
    width: 1.05rem;
    height: 1.05rem;
    display: block;
    flex-shrink: 0;
    opacity: 0.92;
}

.customers-export-spinner-icon[b-lcyatw7e6p] {
    animation: customers-export-spin-b-lcyatw7e6p 0.9s linear infinite;
    opacity: 0.7;
}

@keyframes customers-export-spin-b-lcyatw7e6p {
    to { transform: rotate(360deg); }
}

.customers-grid-error[b-lcyatw7e6p] {
    margin: 0;
    padding: 0.72rem 0.9rem;
    border-bottom: 1px solid rgba(248, 113, 113, 0.22);
    color: #fca5a5;
    font-size: var(--dashboard-text-sm);
}

.customers-bulk-bar[b-lcyatw7e6p] {
    margin: 0.66rem 0.86rem 0;
    border-radius: 0.68rem;
    border: 1px solid rgba(120, 143, 187, 0.32);
    background: rgba(17, 27, 53, 0.7);
    padding: 0.55rem 0.66rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.6rem;
    flex-wrap: wrap;
    flex: 0 0 auto;
}

.customers-bulk-bar p[b-lcyatw7e6p] {
    margin: 0;
    color: #dce8ff;
    font-size: 0.76rem;
    font-weight: 600;
}

.customers-bulk-actions[b-lcyatw7e6p] {
    display: flex;
    align-items: center;
    gap: 0.46rem;
    flex-wrap: wrap;
}

.customers-bulk-message[b-lcyatw7e6p] {
    margin: 0.56rem 0.88rem 0.56rem;
    border-radius: 0.62rem;
    border: 1px solid rgba(82, 201, 255, 0.31);
    background: rgba(10, 67, 96, 0.24);
    color: #a5e6ff;
    padding: 0.45rem 0.62rem;
    font-size: 0.75rem;
}

.customers-table-wrap[b-lcyatw7e6p] {
    overflow-x: auto;
    overflow-y: auto;
    flex: 1 1 auto;
    min-height: 0;
    min-width: 0;
    max-width: 100%;
    width: 100%;
}

.customers-table.dashboard-grid-table[b-lcyatw7e6p] {
    width: max-content;
    min-width: 76rem;
    table-layout: fixed;
}

.customers-col-select[b-lcyatw7e6p] {
    width: 2.25rem;
}

.customers-col-customer[b-lcyatw7e6p] {
    width: 18rem;
}

.customers-col-vat[b-lcyatw7e6p] {
    width: 8rem;
}

.customers-col-contact[b-lcyatw7e6p] {
    width: 12rem;
}

.customers-col-groups[b-lcyatw7e6p] {
    width: 11rem;
}

.customers-col-monthly-limit[b-lcyatw7e6p] {
    width: 8rem;
}

.customers-col-spent[b-lcyatw7e6p] {
    width: 7rem;
}

.customers-col-remaining[b-lcyatw7e6p] {
    width: 9rem;
}

.customers-col-status[b-lcyatw7e6p] {
    width: 7rem;
}

.customers-table thead th[b-lcyatw7e6p] {
    position: sticky;
    top: 0;
    z-index: 4;
    background: rgba(14, 22, 42, 0.96);
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
    white-space: nowrap;
}

.customers-table thead th[data-col-key][b-lcyatw7e6p] {
    position: sticky;
}

.customers-table thead th.customers-status-header[b-lcyatw7e6p] {
    overflow: hidden;
}

.customers-checkbox-col[b-lcyatw7e6p] {
    width: 2.25rem;
    min-width: 2.25rem;
}

.customers-checkbox-col input[b-lcyatw7e6p] {
    accent-color: #7ea4ff;
}

.customers-col-resize-handle[b-lcyatw7e6p] {
    position: absolute;
    left: -0.5px;
    top: 0.32rem;
    bottom: 0.32rem;
    width: 1px;
    height: auto;
    border: 0;
    padding: 0;
    margin: 0;
    display: block;
    background: rgba(126, 164, 255, 0.68);
    -webkit-appearance: none;
    appearance: none;
    outline: none;
    font-size: 0;
    line-height: 0;
    cursor: col-resize;
    touch-action: none;
    z-index: 7;
}

.customers-col-resize-handle[b-lcyatw7e6p]::before {
    content: "";
    position: absolute;
    top: -0.32rem;
    bottom: -0.32rem;
    left: -0.4rem;
    right: -0.4rem;
}

.customers-table thead th:hover .customers-col-resize-handle[b-lcyatw7e6p],
.customers-table thead th.is-resizing .customers-col-resize-handle[b-lcyatw7e6p] {
    background: rgba(149, 184, 255, 0.95);
}

.customers-col-resizing[b-lcyatw7e6p],
.customers-col-resizing *[b-lcyatw7e6p] {
    -webkit-user-select: none;
    user-select: none;
    cursor: col-resize !important;
}

.customers-sort-trigger[b-lcyatw7e6p] {
    display: inline-flex;
    align-items: center;
    gap: 0.28rem;
    border: 0;
    background: transparent;
    color: inherit;
    font: inherit;
    padding: 0;
    cursor: pointer;
}

.customers-sort-trigger:focus-visible[b-lcyatw7e6p] {
    outline: 1px solid rgba(151, 174, 255, 0.7);
    outline-offset: 2px;
    border-radius: 0.25rem;
}

.customers-sort-arrow[b-lcyatw7e6p] {
    opacity: 0.28;
    font-size: 0.68rem;
    transform: translateY(-1px);
}

.customers-sort-arrow.is-active[b-lcyatw7e6p] {
    opacity: 0.95;
    color: #c5d2ff;
}

.customers-sort-arrow.is-asc[b-lcyatw7e6p] {
    transform: translateY(-1px) rotate(180deg);
}

.customers-name-cell[b-lcyatw7e6p],
.customers-contact-cell[b-lcyatw7e6p] {
    display: grid;
    gap: 0.18rem;
    min-width: 0;
}

.customers-name-title[b-lcyatw7e6p] {
    display: inline-flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 0.35rem;
    color: #e8f0ff;
    font-weight: 600;
}

.customers-subline[b-lcyatw7e6p] {
    color: #8ea3c6;
    font-size: var(--dashboard-text-xs);
}

.customers-id[b-lcyatw7e6p] {
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    font-size: 0.72rem;
    font-weight: 700;
}

.customers-id-active[b-lcyatw7e6p] {
    color: #7dd3fc;
}

.customers-id-inactive[b-lcyatw7e6p] {
    color: #94a3b8;
}

.customers-groups-cell[b-lcyatw7e6p] {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 0.28rem;
}

.customers-group-chip[b-lcyatw7e6p] {
    display: inline-flex;
    align-items: center;
    max-width: 9.5rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.28);
    background: rgba(15, 23, 42, 0.55);
    color: #b7c8e6;
    font-size: 0.68rem;
    font-weight: 600;
    padding: 0.14rem 0.45rem;
}

.customers-group-chip-more[b-lcyatw7e6p] {
    color: #9db4d8;
}

.customers-numeric-cell[b-lcyatw7e6p] {
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
}

.customers-remaining[b-lcyatw7e6p] {
    color: #6ee7b7;
    font-weight: 600;
}

.customers-remaining-negative[b-lcyatw7e6p] {
    color: #fca5a5;
    font-weight: 600;
}

.customers-muted[b-lcyatw7e6p] {
    color: #7f93b4;
}

.customers-empty-cell[b-lcyatw7e6p] {
    color: #90a4c7;
    text-align: center;
    padding: 1.1rem 0.8rem !important;
}

.customers-skeleton-row td[b-lcyatw7e6p] {
    padding: 0.72rem 0.7rem !important;
}

.customers-skeleton-bar[b-lcyatw7e6p] {
    display: block;
    height: 0.72rem;
    border-radius: 0.4rem;
    background: linear-gradient(90deg, rgba(148, 163, 184, 0.12), rgba(148, 163, 184, 0.28), rgba(148, 163, 184, 0.12));
    background-size: 200% 100%;
    animation: customers-skeleton-shine-b-lcyatw7e6p 1.2s linear infinite;
}

@keyframes customers-skeleton-shine-b-lcyatw7e6p {
    from {
        background-position: 200% 0;
    }

    to {
        background-position: -200% 0;
    }
}

.customers-grid-footer[b-lcyatw7e6p] {
    position: sticky;
    bottom: 0;
    z-index: 5;
    flex: 0 0 auto;
    background: rgba(12, 18, 34, 0.96);
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
}

.customers-pagination-controls[b-lcyatw7e6p] {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    flex-wrap: wrap;
}

.customers-page-size-wrap .dashboard-grid-select[b-lcyatw7e6p] {
    min-width: 4.5rem;
}

.customers-pagination-ellipsis[b-lcyatw7e6p] {
    color: #7f93b4;
    font-size: 0.72rem;
    padding: 0 0.1rem;
}

.customers-dialog-backdrop[b-lcyatw7e6p] {
    position: fixed;
    inset: 0;
    background: rgba(6, 10, 22, 0.82);
    -webkit-backdrop-filter: blur(3px);
    backdrop-filter: blur(3px);
    display: grid;
    align-items: center;
    justify-items: center;
    padding: 1rem;
    z-index: 1200;
}

.customers-export-progress-backdrop[b-lcyatw7e6p] {
    z-index: 1250;
}

.customers-export-progress-dialog[b-lcyatw7e6p] {
    width: min(27rem, 100%);
    margin: 0;
    border: 1px solid rgba(98, 114, 243, 0.38);
    background: rgba(12, 20, 39, 0.97);
    box-shadow: 0 24px 48px rgba(3, 7, 18, 0.5);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 0.95rem;
}

.customers-export-progress-spinner[b-lcyatw7e6p] {
    width: 1.15rem;
    height: 1.15rem;
    border-radius: 50%;
    border: 2px solid rgba(126, 164, 255, 0.28);
    border-top-color: rgba(167, 197, 255, 0.98);
    flex-shrink: 0;
    animation: customers-export-progress-spin-b-lcyatw7e6p 0.75s linear infinite;
}

.customers-export-progress-copy[b-lcyatw7e6p] {
    display: grid;
    gap: 0.16rem;
    min-width: 0;
    flex: 1 1 auto;
}

.customers-export-progress-copy h3[b-lcyatw7e6p] {
    margin: 0;
    font-size: 0.88rem;
    color: #ecf3ff;
}

.customers-export-progress-copy p[b-lcyatw7e6p] {
    margin: 0;
    font-size: 0.76rem;
    color: #9eb5db;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.customers-export-cancel-btn[b-lcyatw7e6p] {
    min-height: 1.95rem;
    flex-shrink: 0;
}

@keyframes customers-export-progress-spin-b-lcyatw7e6p {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 900px) {
    .customers-page:has(.customers-grid-shell)[b-lcyatw7e6p] {
        height: auto;
        max-height: none;
        overflow: visible;
    }

    .customers-grid-shell[b-lcyatw7e6p] {
        min-height: 22rem;
        max-height: none;
    }

    .customers-pagination-controls[b-lcyatw7e6p] {
        width: 100%;
        justify-content: space-between;
    }
}
/* /Components/Pages/AdminHome.razor.rz.scp.css */
.domain-info-page[b-ayezz740pq] {
    display: grid;
    gap: 0.82rem;
}

.di-panel[b-ayezz740pq] {
    border-radius: 0.9rem;
    border: 1px solid rgba(116, 139, 190, 0.3);
    background:
        radial-gradient(circle at 94% -12%, rgba(94, 120, 214, 0.21), transparent 44%),
        linear-gradient(160deg, rgba(16, 25, 47, 0.93), rgba(11, 16, 32, 0.95));
    color: #d9e7ff;
}

.di-panel h1[b-ayezz740pq],
.di-panel h2[b-ayezz740pq],
.di-panel h3[b-ayezz740pq],
.di-panel strong[b-ayezz740pq] {
    color: #f2f8ff;
}

.di-state-card[b-ayezz740pq] {
    padding: 1rem;
}

.di-header-card[b-ayezz740pq] {
    padding: 0.9rem 1rem;
}

.di-header-shell[b-ayezz740pq] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.di-header-title-wrap h1[b-ayezz740pq] {
    margin: 0;
    font-size: 1.1rem;
}

.di-header-title-wrap p[b-ayezz740pq] {
    margin: 0.35rem 0 0;
}

.di-domain-chip[b-ayezz740pq] {
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.33);
    background: rgba(15, 23, 42, 0.58);
    color: #a6bddf;
    font-size: var(--dashboard-text-xs);
    letter-spacing: 0.04em;
    padding: 0.2rem 0.55rem;
}

.di-top-widgets[b-ayezz740pq] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr));
    gap: 0.72rem;
    width: 100%;
}

.di-widget-card[b-ayezz740pq] {
    padding: 0.8rem 0.9rem;
}

.di-widget-label[b-ayezz740pq] {
    margin: 0;
    font-size: var(--dashboard-text-xs);
    color: #9db1d5;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.di-widget-value[b-ayezz740pq] {
    margin: 0.42rem 0 0;
    font-size: var(--dashboard-text-lg);
    font-weight: 700;
}

.di-widget-note[b-ayezz740pq] {
    margin: 0.25rem 0 0;
    font-size: var(--dashboard-text-sm);
    color: #98acd1;
}

.di-widget-card-transactors[b-ayezz740pq] {
    display: grid;
    gap: 0.55rem;
}

.di-transactor-split[b-ayezz740pq] {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.55rem;
}

.di-transactor-metric[b-ayezz740pq] {
    border-radius: 0.78rem;
    border: 1px solid rgba(148, 163, 184, 0.22);
    padding: 0.62rem 0.7rem;
    background: rgba(12, 20, 39, 0.58);
}

.di-transactor-metric-customers[b-ayezz740pq] {
    border-color: rgba(56, 189, 248, 0.34);
    background: linear-gradient(180deg, rgba(10, 37, 64, 0.72), rgba(9, 23, 43, 0.78));
}

.di-transactor-metric-suppliers[b-ayezz740pq] {
    border-color: rgba(251, 191, 36, 0.34);
    background: linear-gradient(180deg, rgba(66, 44, 9, 0.66), rgba(42, 26, 7, 0.8));
}

.di-transactor-kind[b-ayezz740pq] {
    margin: 0;
    font-size: var(--dashboard-text-xs);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.di-transactor-metric-customers .di-transactor-kind[b-ayezz740pq],
.di-transactor-metric-customers .di-transactor-count[b-ayezz740pq] {
    color: #7dd3fc;
}

.di-transactor-metric-suppliers .di-transactor-kind[b-ayezz740pq],
.di-transactor-metric-suppliers .di-transactor-count[b-ayezz740pq] {
    color: #fbbf24;
}

.di-transactor-count[b-ayezz740pq] {
    margin: 0.28rem 0 0;
    font-size: 1.45rem;
    font-weight: 800;
    line-height: 1;
}

.di-product-split[b-ayezz740pq] {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.55rem;
    margin-top: 0.42rem;
}

.di-product-metric[b-ayezz740pq] {
    border-radius: 0.78rem;
    border: 1px solid rgba(148, 163, 184, 0.22);
    padding: 0.62rem 0.7rem;
    background: rgba(12, 20, 39, 0.58);
}

.di-product-metric-products[b-ayezz740pq] {
    border-color: rgba(52, 211, 153, 0.34);
    background: linear-gradient(180deg, rgba(6, 54, 41, 0.72), rgba(6, 34, 27, 0.82));
}

.di-product-metric-services[b-ayezz740pq] {
    border-color: rgba(244, 114, 182, 0.34);
    background: linear-gradient(180deg, rgba(73, 20, 58, 0.68), rgba(44, 12, 34, 0.82));
}

.di-product-kind[b-ayezz740pq] {
    margin: 0;
    font-size: var(--dashboard-text-xs);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.di-product-metric-products .di-product-kind[b-ayezz740pq],
.di-product-metric-products .di-product-count[b-ayezz740pq] {
    color: #6ee7b7;
}

.di-product-metric-services .di-product-kind[b-ayezz740pq],
.di-product-metric-services .di-product-count[b-ayezz740pq] {
    color: #f9a8d4;
}

.di-product-count[b-ayezz740pq] {
    margin: 0.28rem 0 0;
    font-size: 1.45rem;
    font-weight: 800;
    line-height: 1;
}

.di-widget-card-inventory[b-ayezz740pq] {
    display: grid;
    gap: 0.55rem;
}

.di-inventory-split[b-ayezz740pq] {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.55rem;
}

.di-inventory-metric[b-ayezz740pq] {
    border-radius: 0.78rem;
    border: 1px solid rgba(148, 163, 184, 0.22);
    padding: 0.62rem 0.7rem;
    background: rgba(12, 20, 39, 0.58);
}

.di-inventory-metric-stores[b-ayezz740pq] {
    border-color: rgba(96, 165, 250, 0.34);
    background: linear-gradient(180deg, rgba(13, 38, 74, 0.72), rgba(9, 23, 45, 0.82));
}

.di-inventory-metric-devices[b-ayezz740pq] {
    border-color: rgba(167, 139, 250, 0.34);
    background: linear-gradient(180deg, rgba(39, 24, 78, 0.7), rgba(24, 14, 50, 0.84));
}

.di-inventory-kind[b-ayezz740pq] {
    margin: 0;
    font-size: var(--dashboard-text-xs);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.di-inventory-metric-stores .di-inventory-kind[b-ayezz740pq],
.di-inventory-metric-stores .di-inventory-count[b-ayezz740pq] {
    color: #93c5fd;
}

.di-inventory-metric-devices .di-inventory-kind[b-ayezz740pq],
.di-inventory-metric-devices .di-inventory-count[b-ayezz740pq] {
    color: #c4b5fd;
}

.di-inventory-count[b-ayezz740pq] {
    margin: 0.28rem 0 0;
    font-size: 1.45rem;
    font-weight: 800;
    line-height: 1;
}

.di-main-grid[b-ayezz740pq] {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 0.72rem;
    width: 100%;
}

.di-stores-card[b-ayezz740pq] {
    padding: 0.85rem 0.95rem;
    width: 100%;
}

.di-panel-head[b-ayezz740pq] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.7rem;
    margin-bottom: 0.65rem;
}

.di-panel-head h2[b-ayezz740pq] {
    margin: 0;
    font-size: var(--dashboard-text-md);
}

.di-panel-head p[b-ayezz740pq] {
    margin: 0.25rem 0 0;
}

.di-table-wrap[b-ayezz740pq] {
    max-height: 56vh;
    overflow: auto;
    border: 1px solid rgba(130, 151, 190, 0.22);
    border-radius: 0.65rem;
    background: rgba(10, 16, 31, 0.56);
}

.di-stores-table[b-ayezz740pq] {
    width: 100%;
    border-collapse: collapse;
    min-width: 46rem;
}

.di-stores-table th[b-ayezz740pq],
.di-stores-table td[b-ayezz740pq] {
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    text-align: left;
    vertical-align: middle;
    padding: 0.57rem 0.56rem;
    font-size: var(--dashboard-text-sm);
}

.di-stores-table th[b-ayezz740pq] {
    color: #92acd8;
    font-size: var(--dashboard-text-xs);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.di-store-subline[b-ayezz740pq] {
    display: block;
    margin-top: 0.15rem;
    color: #9bb1d7;
    font-size: var(--dashboard-text-xs);
}

.di-store-name-cell[b-ayezz740pq] {
    display: grid;
    gap: 0.12rem;
}

.di-store-name-title[b-ayezz740pq] {
    display: flex;
    align-items: center;
    gap: 0.32rem;
    flex-wrap: wrap;
    font-weight: 700;
    color: #f2f8ff;
}

.di-store-id[b-ayezz740pq] {
    font-size: var(--dashboard-text-sm);
}

.di-store-id-active[b-ayezz740pq] {
    color: #7dd3fc;
}

.di-store-id-inactive[b-ayezz740pq] {
    color: #fca5a5;
}

.di-database-cell[b-ayezz740pq] {
    display: grid;
    gap: 0.1rem;
}

.di-database-primary[b-ayezz740pq] {
    color: #dce7ff;
    font-weight: 600;
}

.di-database-secondary[b-ayezz740pq] {
    color: #9bb1d7;
    font-size: var(--dashboard-text-xs);
}

.di-status-chip[b-ayezz740pq] {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    border: 1px solid transparent;
    padding: 0.14rem 0.5rem;
    font-size: var(--dashboard-text-xs);
    letter-spacing: 0.02em;
    font-weight: 700;
}

.di-status-operational[b-ayezz740pq] {
    color: #4ade80;
    border-color: rgba(74, 222, 128, 0.4);
    background: rgba(20, 83, 45, 0.34);
}

.di-status-degraded[b-ayezz740pq] {
    color: #fbbf24;
    border-color: rgba(251, 191, 36, 0.4);
    background: rgba(120, 78, 14, 0.35);
}

.di-status-critical[b-ayezz740pq],
.di-status-inactive[b-ayezz740pq] {
    color: #f87171;
    border-color: rgba(248, 113, 113, 0.45);
    background: rgba(127, 29, 29, 0.34);
}

.di-status-unknown[b-ayezz740pq] {
    color: #bfdbfe;
    border-color: rgba(191, 219, 254, 0.35);
    background: rgba(30, 58, 138, 0.27);
}

.di-settings-stack[b-ayezz740pq] {
    display: grid;
    gap: 0.6rem;
}

.di-setting-item[b-ayezz740pq] {
    border: 1px solid rgba(130, 151, 190, 0.24);
    border-radius: 0.7rem;
    background: rgba(13, 22, 43, 0.58);
    padding: 0.65rem 0.72rem;
}

.di-setting-item h3[b-ayezz740pq] {
    margin: 0;
    font-size: var(--dashboard-text-base);
}

.di-setting-item p[b-ayezz740pq] {
    margin: 0.28rem 0 0;
    color: #9bb0d4;
    font-size: var(--dashboard-text-sm);
}

.di-setting-badge[b-ayezz740pq] {
    display: inline-flex;
    margin-top: 0.45rem;
    border-radius: 999px;
    border: 1px solid rgba(96, 143, 255, 0.35);
    background: rgba(49, 79, 180, 0.24);
    color: #9cc0ff;
    font-size: var(--dashboard-text-xs);
    font-weight: 700;
    letter-spacing: 0.03em;
    padding: 0.16rem 0.45rem;
}

@media (max-width: 740px) {
    .di-top-widgets[b-ayezz740pq] {
        grid-template-columns: 1fr;
    }

    .di-transactor-split[b-ayezz740pq] {
        grid-template-columns: 1fr;
    }

    .di-product-split[b-ayezz740pq] {
        grid-template-columns: 1fr;
    }

    .di-inventory-split[b-ayezz740pq] {
        grid-template-columns: 1fr;
    }

    .di-header-card[b-ayezz740pq],
    .di-stores-card[b-ayezz740pq] {
        padding: 0.75rem;
    }
}
/* /Components/Pages/Home.razor.rz.scp.css */
.signin-screen[b-m3ia9fqg8x] {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: block;
    overflow: hidden;
    background: linear-gradient(135deg, var(--auth-bg-start) 0%, var(--auth-bg-mid) 40%, var(--auth-bg-end) 100%);
    color: var(--auth-text);
}

.signin-main[b-m3ia9fqg8x] {
    z-index: 10;
    align-items: stretch;
}

.signin-screen .signin-main.auth-main[b-m3ia9fqg8x] {
    padding: 1.15rem var(--auth-page-pad-desktop);
}

.signin-screen .signin-main.auth-main.auth-main-split[b-m3ia9fqg8x] {
    box-sizing: border-box;
    min-height: 100vh;
}

.bg-decorations[b-m3ia9fqg8x] {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.bg-radial[b-m3ia9fqg8x] {
    position: absolute;
    border-radius: 999px;
}

.bg-radial-brand[b-m3ia9fqg8x] {
    top: 0;
    left: 25%;
    width: 800px;
    height: 800px;
    opacity: 0.1;
    background: radial-gradient(circle, var(--auth-brand) 0%, transparent 70%);
}

.bg-radial-accent[b-m3ia9fqg8x] {
    top: -10rem;
    right: -10rem;
    width: 600px;
    height: 600px;
    opacity: 0.05;
    background: radial-gradient(circle, var(--auth-accent) 0%, transparent 70%);
}

.bg-radial-bottom[b-m3ia9fqg8x] {
    bottom: 0;
    left: -5rem;
    width: 500px;
    height: 500px;
    opacity: 0.08;
    background: radial-gradient(circle, #4f56e8 0%, transparent 70%);
}

.bg-grid[b-m3ia9fqg8x] {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image:
        linear-gradient(rgba(var(--auth-brand-rgb), 1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(var(--auth-brand-rgb), 1) 1px, transparent 1px);
    background-size: 60px 60px;
}

.bg-dot[b-m3ia9fqg8x] {
    position: absolute;
    border-radius: 999px;
    animation: floatSlow-b-m3ia9fqg8x 6.8s ease-in-out infinite;
}

.dot-1[b-m3ia9fqg8x] {
    top: 5rem;
    left: 5rem;
    width: 0.75rem;
    height: 0.75rem;
    background: rgba(98, 114, 243, 0.5);
}

.dot-2[b-m3ia9fqg8x] {
    top: 14rem;
    right: 8rem;
    width: 0.5rem;
    height: 0.5rem;
    background: rgba(52, 211, 153, 0.4);
    animation-delay: -2.8s;
}

.dot-3[b-m3ia9fqg8x] {
    bottom: 10rem;
    left: 10rem;
    width: 1rem;
    height: 1rem;
    background: rgba(129, 140, 248, 0.25);
}

.dot-4[b-m3ia9fqg8x] {
    bottom: 6rem;
    right: 14rem;
    width: 0.5rem;
    height: 0.5rem;
    background: rgba(52, 211, 153, 0.35);
    animation-delay: -4.2s;
}

.dot-5[b-m3ia9fqg8x] {
    top: 34%;
    right: 4rem;
    width: 0.38rem;
    height: 0.38rem;
    background: rgba(98, 114, 243, 0.45);
}

.dot-6[b-m3ia9fqg8x] {
    top: 66%;
    left: 3rem;
    width: 0.5rem;
    height: 0.5rem;
    background: rgba(168, 85, 247, 0.3);
    animation-delay: -3.5s;
}

.left-panel[b-m3ia9fqg8x] {
    display: none;
    position: relative;
    z-index: 10;
    box-sizing: border-box;
}

.logo[b-m3ia9fqg8x],
.mobile-logo[b-m3ia9fqg8x] {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    text-decoration: none;
    color: #d6e4ff;
    width: fit-content;
}

.logo-image[b-m3ia9fqg8x] {
    width: var(--auth-logo-size-desktop);
    height: auto;
    display: block;
    object-fit: contain;
    filter: drop-shadow(0 8px 14px rgba(19, 35, 96, 0.38));
}

.logo-partner[b-m3ia9fqg8x] {
    font-size: var(--auth-logo-partner-size);
    letter-spacing: 0.01em;
    color: var(--auth-logo-partner);
    font-weight: 640;
    line-height: 1;
}

.left-hero[b-m3ia9fqg8x] {
    max-width: 40rem;
    display: grid;
    gap: 0;
}

.hero-pill[b-m3ia9fqg8x] {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    width: fit-content;
    padding: 0.38rem 0.9rem;
    border-radius: 999px;
    margin: 0 0 1.8rem;
    border: 1px solid rgba(98, 114, 243, 0.2);
    background: rgba(98, 114, 243, 0.1);
}

.hero-pill-dot[b-m3ia9fqg8x] {
    width: 0.38rem;
    height: 0.38rem;
    border-radius: 999px;
    background: #34d399;
    animation: pulseSlow-b-m3ia9fqg8x 2.4s ease-in-out infinite;
}

.hero-pill-label[b-m3ia9fqg8x] {
    color: #9fb2ef;
    font-size: 0.72rem;
    letter-spacing: 0.06em;
    font-weight: 560;
    text-transform: uppercase;
}

.left-hero h1[b-m3ia9fqg8x] {
    margin: 0;
    color: #ffffff;
    font-size: clamp(2.2rem, 3.5vw, 3.4rem);
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: -0.015em;
    font-family: "Plus Jakarta Sans", "Segoe UI", sans-serif;
}

.left-hero h1 span[b-m3ia9fqg8x] {
    background: linear-gradient(90deg, #6272f3, #34d399);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-description[b-m3ia9fqg8x] {
    margin: 1.2rem 0 2.2rem;
    color: #94a3b8;
    font-size: 1rem;
    line-height: 1.7;
    max-width: 36rem;
}

.feature-cards[b-m3ia9fqg8x] {
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.feature-card[b-m3ia9fqg8x] {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem;
    border-radius: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(255, 255, 255, 0.03);
    transition: border-color 0.2s ease, transform 0.2s ease;
}

.feature-card:hover[b-m3ia9fqg8x] {
    transform: translateY(-1px);
}

#feat-1:hover[b-m3ia9fqg8x] {
    border-color: rgba(98, 114, 243, 0.2);
}

#feat-2:hover[b-m3ia9fqg8x] {
    border-color: rgba(52, 211, 153, 0.2);
}

#feat-3:hover[b-m3ia9fqg8x] {
    border-color: rgba(168, 85, 247, 0.2);
}

#feat-4:hover[b-m3ia9fqg8x] {
    border-color: rgba(251, 191, 36, 0.2);
}

.feature-icon[b-m3ia9fqg8x] {
    width: 2rem;
    height: 2rem;
    border-radius: 0.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon svg[b-m3ia9fqg8x] {
    width: 0.75rem;
    height: 0.75rem;
}

.feature-icon-store[b-m3ia9fqg8x] {
    color: #6272f3;
    background: rgba(98, 114, 243, 0.15);
    border: 1px solid rgba(98, 114, 243, 0.2);
}

.feature-icon-device[b-m3ia9fqg8x] {
    color: #34d399;
    background: rgba(52, 211, 153, 0.12);
    border: 1px solid rgba(52, 211, 153, 0.2);
}

.feature-icon-support[b-m3ia9fqg8x] {
    color: #a855f7;
    background: rgba(168, 85, 247, 0.12);
    border: 1px solid rgba(168, 85, 247, 0.2);
}

.feature-icon-analytics[b-m3ia9fqg8x] {
    color: #fbbf24;
    background: rgba(251, 191, 36, 0.12);
    border: 1px solid rgba(251, 191, 36, 0.2);
}

.feature-copy[b-m3ia9fqg8x] {
    min-width: 0;
}

.feature-title[b-m3ia9fqg8x] {
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 0.15rem;
}

.feature-desc[b-m3ia9fqg8x] {
    color: #64748b;
    font-size: 0.75rem;
    line-height: 1.6;
}

.stats-strip[b-m3ia9fqg8x] {
    display: flex;
    align-items: center;
    gap: 1.8rem;
    flex-wrap: wrap;
}

.stat-item[b-m3ia9fqg8x] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.stat-icon[b-m3ia9fqg8x] {
    width: 2rem;
    height: 2rem;
    border-radius: 0.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.stat-icon svg[b-m3ia9fqg8x] {
    width: 0.72rem;
    height: 0.72rem;
}

.stat-icon-green[b-m3ia9fqg8x] {
    color: #34d399;
    background: rgba(52, 211, 153, 0.12);
}

.stat-icon-brand[b-m3ia9fqg8x] {
    color: #6272f3;
    background: rgba(98, 114, 243, 0.12);
}

.stat-icon-amber[b-m3ia9fqg8x] {
    color: #fbbf24;
    background: rgba(251, 191, 36, 0.12);
}

.stat-copy strong[b-m3ia9fqg8x] {
    display: block;
    color: #ffffff;
    font-size: 0.9rem;
    line-height: 1.1;
}

.stat-copy span[b-m3ia9fqg8x] {
    color: #64748b;
    font-size: 0.74rem;
}

.stat-separator[b-m3ia9fqg8x] {
    width: 1px;
    height: 2rem;
    background: rgba(255, 255, 255, 0.05);
}

.right-panel[b-m3ia9fqg8x] {
    width: 100%;
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2.5rem 2rem;
    background: rgba(15, 23, 42, 0.7);
    -webkit-backdrop-filter: blur(24px);
    backdrop-filter: blur(24px);
    box-sizing: border-box;
}

.mobile-logo[b-m3ia9fqg8x] {
    margin-bottom: 2.2rem;
}

.form-container[b-m3ia9fqg8x] {
    width: 100%;
    max-width: min(34rem, 100%);
}

.form-header[b-m3ia9fqg8x] {
    margin-bottom: 1.35rem;
}

.form-header h2[b-m3ia9fqg8x] {
    margin: 0 0 0.45rem;
    color: #ffffff;
    font-size: clamp(1.8rem, 2.2vw, 2.1rem);
    font-weight: 700;
    font-family: "Plus Jakarta Sans", "Segoe UI", sans-serif;
}

.form-header p[b-m3ia9fqg8x] {
    margin: 0;
    color: #94a3b8;
    font-size: 0.88rem;
    line-height: 1.5;
}

.signin-form[b-m3ia9fqg8x] {
    display: grid;
    gap: 1rem;
}

.field-block[b-m3ia9fqg8x] {
    display: grid;
    gap: 0.38rem;
}

.field-label[b-m3ia9fqg8x] {
    color: #cbd5e1;
    font-size: 0.88rem;
    font-weight: 560;
}

.field-hint[b-m3ia9fqg8x] {
    color: #7c8fad;
    font-size: 0.72rem;
    font-weight: 560;
}

.field-top[b-m3ia9fqg8x] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.7rem;
}

#forgot-password[b-m3ia9fqg8x] {
    color: #6272f3;
    font-size: 0.75rem;
    font-weight: 560;
    text-decoration: none;
}

#forgot-password:hover[b-m3ia9fqg8x] {
    color: #8f9dff;
}

.input-wrap[b-m3ia9fqg8x] {
    position: relative;
}

.input-icon[b-m3ia9fqg8x] {
    position: absolute;
    left: 0.95rem;
    top: 50%;
    transform: translateY(-50%);
    color: #64748b;
    width: 0.9rem;
    height: 0.9rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.input-icon svg[b-m3ia9fqg8x] {
    width: 0.9rem;
    height: 0.9rem;
}

.input-wrap input[b-m3ia9fqg8x] {
    width: 100%;
    height: 3rem;
    border-radius: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.05);
    padding: 0 0.9rem 0 2.55rem;
    color: #ffffff;
    font-size: 0.88rem;
    outline: none;
    transition: border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.input-wrap input[b-m3ia9fqg8x]::placeholder {
    color: #64748b;
}

.input-wrap input:focus[b-m3ia9fqg8x] {
    background: rgba(98, 114, 243, 0.07);
    border-color: rgba(98, 114, 243, 0.35);
    box-shadow: 0 0 0 2px rgba(98, 114, 243, 0.2);
}

.toggle-password[b-m3ia9fqg8x] {
    position: absolute;
    right: 0.9rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1.6rem;
    height: 1.6rem;
    border: none;
    background: transparent;
    color: #9fb0cd;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.toggle-password:hover[b-m3ia9fqg8x] {
    color: #e2e8f0;
}

.toggle-password:focus-visible[b-m3ia9fqg8x] {
    outline: none;
    color: #e2e8f0;
}

.toggle-password svg[b-m3ia9fqg8x] {
    width: 0.9rem;
    height: 0.9rem;
}

.remember-me-row[b-m3ia9fqg8x] {
    margin-top: 0.1rem;
}

.remember-toggle[b-m3ia9fqg8x] {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    cursor: pointer;
    position: relative;
}

.remember-toggle input[b-m3ia9fqg8x] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.remember-box[b-m3ia9fqg8x] {
    width: 1.25rem;
    height: 1.25rem;
    border-radius: 0.38rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.05);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.18s ease, border-color 0.18s ease;
}

.remember-box svg[b-m3ia9fqg8x] {
    width: 0.62rem;
    height: 0.62rem;
    color: #ffffff;
    opacity: 0;
    transition: opacity 0.18s ease;
}

.remember-toggle input:checked + .remember-box[b-m3ia9fqg8x] {
    background: #6272f3;
    border-color: #6272f3;
}

.remember-toggle input:checked + .remember-box svg[b-m3ia9fqg8x] {
    opacity: 1;
}

.remember-label[b-m3ia9fqg8x] {
    color: #94a3b8;
    font-size: 0.86rem;
}

.primary-btn[b-m3ia9fqg8x],
.secondary-btn[b-m3ia9fqg8x] {
    width: 100%;
    min-height: 3rem;
    border-radius: 0.75rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    font-size: 0.88rem;
    font-weight: 600;
    transition: transform 0.16s ease, filter 0.16s ease, border-color 0.16s ease, background 0.16s ease;
}

.primary-btn[b-m3ia9fqg8x] {
    color: #ffffff;
    border: 1px solid transparent;
    background: linear-gradient(135deg, #6272f3, #4f56e8);
    box-shadow: 0 0 32px rgba(98, 114, 243, 0.3);
}

.primary-btn:hover[b-m3ia9fqg8x] {
    transform: scale(1.01);
    filter: brightness(1.03);
}

.primary-btn:active[b-m3ia9fqg8x] {
    transform: scale(0.99);
}

.secondary-btn[b-m3ia9fqg8x] {
    color: #cbd5e1;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
}

.secondary-btn:hover[b-m3ia9fqg8x] {
    color: #ffffff;
    border-color: rgba(148, 163, 184, 0.55);
    background: rgba(255, 255, 255, 0.05);
}

.btn-icon[b-m3ia9fqg8x] {
    width: 0.85rem;
    height: 0.85rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-icon svg[b-m3ia9fqg8x] {
    width: 0.85rem;
    height: 0.85rem;
}

.is-disabled[b-m3ia9fqg8x],
.is-disabled:hover[b-m3ia9fqg8x] {
    opacity: 0.56;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
    filter: none;
}

.divider[b-m3ia9fqg8x] {
    position: relative;
    text-align: center;
    margin: 0.12rem 0;
}

.divider[b-m3ia9fqg8x]::before,
.divider[b-m3ia9fqg8x]::after {
    content: "";
    position: absolute;
    top: 50%;
    width: calc(50% - 4.3rem);
    height: 1px;
    background: rgba(255, 255, 255, 0.05);
}

.divider[b-m3ia9fqg8x]::before {
    left: 0;
}

.divider[b-m3ia9fqg8x]::after {
    right: 0;
}

.divider span[b-m3ia9fqg8x] {
    color: #64748b;
    font-size: 0.75rem;
    display: inline-block;
    background: rgba(15, 23, 42, 0.8);
    padding: 0 0.45rem;
}

.form-footer[b-m3ia9fqg8x] {
    margin-top: 1.7rem;
    text-align: center;
}

.form-footer p[b-m3ia9fqg8x] {
    margin: 0;
    color: #64748b;
    font-size: 0.88rem;
}

.form-footer a[b-m3ia9fqg8x] {
    margin-left: 0.3rem;
    color: #6272f3;
    font-weight: 560;
    text-decoration: none;
}

.form-footer a:hover[b-m3ia9fqg8x] {
    color: #8f9dff;
}

.security-badges[b-m3ia9fqg8x] {
    margin-top: 1.7rem;
    padding-top: 1.3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.security-item[b-m3ia9fqg8x] {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: #64748b;
    font-size: 0.72rem;
}

.security-icon[b-m3ia9fqg8x] {
    width: 0.68rem;
    height: 0.68rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.security-icon svg[b-m3ia9fqg8x] {
    width: 0.68rem;
    height: 0.68rem;
}

.security-separator[b-m3ia9fqg8x] {
    width: 1px;
    height: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
}

.state-card[b-m3ia9fqg8x] {
    margin-top: 1rem;
    border: 1px solid rgba(96, 122, 214, 0.34);
    border-radius: 0.85rem;
    background: rgba(15, 28, 74, 0.65);
    padding: 0.9rem;
}

.state-card h3[b-m3ia9fqg8x] {
    margin: 0;
    color: #f8fbff;
    font-size: 0.98rem;
}

.state-card p[b-m3ia9fqg8x] {
    margin: 0.55rem 0 0;
    color: #9eb1dd;
    font-size: 0.86rem;
}

.state-card ul[b-m3ia9fqg8x] {
    margin: 0.55rem 0 0;
    padding-left: 1rem;
    color: #9eb1dd;
    font-size: 0.82rem;
    display: grid;
    gap: 0.25rem;
}

.state-warning[b-m3ia9fqg8x] {
    border-color: rgba(245, 179, 75, 0.35);
    background: rgba(73, 51, 16, 0.38);
}

.state-card.state-warning[b-m3ia9fqg8x] {
    margin-top: 0;
    margin-bottom: 0.9rem;
}

.state-success[b-m3ia9fqg8x] {
    border-color: rgba(52, 211, 153, 0.35);
    background: rgba(18, 66, 60, 0.45);
}

.state-actions[b-m3ia9fqg8x] {
    margin-top: 0.85rem;
    display: grid;
    gap: 0.55rem;
}

.bootstrap-kv[b-m3ia9fqg8x] {
    margin: 0.75rem 0 0;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.32rem 0.65rem;
}

.bootstrap-kv dt[b-m3ia9fqg8x] {
    color: #8fa5d9;
}

.bootstrap-kv dd[b-m3ia9fqg8x] {
    margin: 0;
    color: #e5edff;
}

.state-card details[b-m3ia9fqg8x] {
    margin-top: 0.55rem;
}

.state-card summary[b-m3ia9fqg8x] {
    cursor: pointer;
    color: #d8e5ff;
    font-weight: 600;
}

.state-card pre[b-m3ia9fqg8x] {
    margin: 0.45rem 0 0;
    padding: 0.6rem;
    border-radius: 0.6rem;
    border: 1px solid rgba(105, 130, 220, 0.3);
    background: rgba(8, 20, 53, 0.72);
    color: #d0dcfd;
    font-size: 0.76rem;
    white-space: pre-wrap;
    word-break: break-word;
}

.two-factor-modal-shell[b-m3ia9fqg8x] {
    position: fixed;
    inset: 0;
    z-index: 60;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.two-factor-modal-backdrop[b-m3ia9fqg8x] {
    position: absolute;
    inset: 0;
    background: rgba(6, 10, 22, 0.82);
    -webkit-backdrop-filter: blur(3px);
    backdrop-filter: blur(3px);
}

.two-factor-modal[b-m3ia9fqg8x] {
    position: relative;
    z-index: 1;
    width: min(30rem, calc(100vw - 2rem));
    border-radius: 1rem;
    border: 1px solid rgba(98, 114, 243, 0.34);
    background: rgba(15, 23, 42, 0.96);
    box-shadow: 0 24px 48px rgba(3, 7, 18, 0.5);
    padding: 1.15rem;
    display: grid;
    gap: 0.9rem;
}

.two-factor-modal h3[b-m3ia9fqg8x] {
    margin: 0;
    color: #f8fbff;
    font-size: 1.05rem;
}

.two-factor-modal p[b-m3ia9fqg8x] {
    margin: 0;
    color: #9eb1dd;
    font-size: 0.86rem;
    line-height: 1.6;
}

.two-factor-field[b-m3ia9fqg8x] {
    margin-top: 0.15rem;
}

.two-factor-modal-error[b-m3ia9fqg8x] {
    border: 1px solid rgba(245, 179, 75, 0.35);
    border-radius: 0.7rem;
    padding: 0.65rem 0.75rem;
    background: rgba(73, 51, 16, 0.35);
    color: #f8dca9;
}

.two-factor-modal-actions[b-m3ia9fqg8x] {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem;
}

.two-factor-modal-actions .primary-btn[b-m3ia9fqg8x],
.two-factor-modal-actions .secondary-btn[b-m3ia9fqg8x] {
    min-height: 2.8rem;
}

.floating-status[b-m3ia9fqg8x] {
    display: none;
    position: absolute;
    bottom: 4rem;
    left: 50%;
    transform: translateX(-50%);
    align-items: center;
    gap: 0.45rem;
    flex-wrap: wrap;
    justify-content: center;
    padding: 0.75rem 1rem;
    border-radius: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(15, 23, 42, 0.9);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    z-index: 20;
    animation: floatingStatusDrift-b-m3ia9fqg8x 6.2s ease-in-out infinite;
}

.floating-status.is-healthy[b-m3ia9fqg8x] {
    border-color: rgba(52, 211, 153, 0.25);
}

.floating-status.is-checking[b-m3ia9fqg8x] {
    border-color: rgba(251, 191, 36, 0.28);
}

.floating-status.is-unhealthy[b-m3ia9fqg8x] {
    border-color: rgba(248, 113, 113, 0.32);
}

.floating-dot[b-m3ia9fqg8x] {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 999px;
    background: #34d399;
    animation: pulseSlow-b-m3ia9fqg8x 2.4s ease-in-out infinite;
}

.floating-dot.is-healthy[b-m3ia9fqg8x] {
    background: #34d399;
}

.floating-dot.is-checking[b-m3ia9fqg8x] {
    background: #fbbf24;
}

.floating-dot.is-unhealthy[b-m3ia9fqg8x] {
    background: #f87171;
}

.floating-label[b-m3ia9fqg8x] {
    color: #cbd5e1;
    font-size: 0.78rem;
    font-weight: 560;
    letter-spacing: 0.01em;
}

.floating-item[b-m3ia9fqg8x] {
    display: inline-flex;
    align-items: center;
}

.floating-item + .floating-item[b-m3ia9fqg8x]::before {
    content: "•";
    color: #64748b;
    margin: 0 0.42rem 0 0.08rem;
    font-size: 0.78rem;
    line-height: 1;
}

.floating-time[b-m3ia9fqg8x] {
    color: #94a3b8;
    font-size: 0.76rem;
}

@media (min-width: 1024px) {
    .left-panel[b-m3ia9fqg8x] {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        min-width: 0;
        padding: 0 1.35rem 0 0;
    }

    .right-panel[b-m3ia9fqg8x] {
        min-width: 0;
        padding: 2.5rem 2rem;
        border-left: 1px solid rgba(255, 255, 255, 0.05);
    }

    .mobile-logo[b-m3ia9fqg8x] {
        display: none;
    }
}

@media (min-width: 1280px) {
    .left-panel[b-m3ia9fqg8x] {
        padding-right: 1.7rem;
    }

    .right-panel[b-m3ia9fqg8x] {
        padding: 2.5rem 2.3rem;
    }

    .floating-status[b-m3ia9fqg8x] {
        display: inline-flex;
    }
}

@media (max-width: 1023px) {
    .signin-screen[b-m3ia9fqg8x] {
        min-height: 100vh;
    }

    .signin-screen .signin-main.auth-main[b-m3ia9fqg8x] {
        padding: 1rem var(--auth-page-pad-tablet);
    }

    .right-panel[b-m3ia9fqg8x] {
        padding: 2.2rem var(--auth-page-pad-tablet);
    }
}

@media (max-width: 680px) {
    .right-panel[b-m3ia9fqg8x] {
        padding: 1.8rem var(--auth-page-pad-mobile);
    }

    .logo-image[b-m3ia9fqg8x] {
        width: var(--auth-logo-size-mobile);
    }

    .logo-partner[b-m3ia9fqg8x] {
        font-size: var(--auth-logo-partner-size-mobile);
    }

    .form-container[b-m3ia9fqg8x] {
        max-width: 100%;
    }

    .security-badges[b-m3ia9fqg8x] {
        flex-direction: column;
        gap: 0.45rem;
    }

    .security-separator[b-m3ia9fqg8x] {
        display: none;
    }

    .feature-cards[b-m3ia9fqg8x] {
        grid-template-columns: 1fr;
    }

    .stats-strip[b-m3ia9fqg8x] {
        gap: 1rem;
    }

    .stat-separator[b-m3ia9fqg8x] {
        display: none;
    }

    .two-factor-modal-actions[b-m3ia9fqg8x] {
        grid-template-columns: 1fr;
    }
}

@keyframes floatSlow-b-m3ia9fqg8x {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

@keyframes floatingStatusDrift-b-m3ia9fqg8x {
    0%,
    100% {
        transform: translate(-50%, 0);
    }

    50% {
        transform: translate(-50%, -8px);
    }
}

@keyframes pulseSlow-b-m3ia9fqg8x {
    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.35);
    }

    50% {
        transform: scale(1.12);
        box-shadow: 0 0 0 0.18rem rgba(52, 211, 153, 0.12);
    }
}
/* /Components/TenantSelectDialog.razor.rz.scp.css */
.tenant-dialog-backdrop[b-f8mm01m3tq] {
    position: fixed;
    inset: 0;
    z-index: 1200;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    background: rgba(3, 8, 19, 0.64);
    -webkit-backdrop-filter: blur(3px);
    backdrop-filter: blur(3px);
}

.tenant-dialog[b-f8mm01m3tq] {
    width: min(36rem, 100%);
    max-height: min(44rem, calc(100vh - 3rem));
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    border: 1px solid rgba(122, 149, 211, 0.35);
    border-radius: 1rem;
    background: linear-gradient(160deg, rgba(8, 18, 38, 0.98), rgba(13, 26, 55, 0.98));
    box-shadow: 0 28px 44px rgba(2, 8, 24, 0.56);
    padding: 1rem 1.15rem;
    color: #e9f1ff;
}

.tenant-dialog-header[b-f8mm01m3tq] {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.85rem;
}

.tenant-dialog-title-wrap[b-f8mm01m3tq] {
    display: grid;
    gap: 0.2rem;
}

.tenant-dialog-header h3[b-f8mm01m3tq],
.tenant-dialog-title-wrap h3[b-f8mm01m3tq],
.tenant-dialog h3[b-f8mm01m3tq],
.tenant-dialog h4[b-f8mm01m3tq] {
    margin: 0;
    color: #e9f1ff !important;
}

.tenant-dialog .status-note[b-f8mm01m3tq] {
    margin: 0.2rem 0 0;
    color: #90a4c7 !important;
}

.tenant-dialog .action-link[b-f8mm01m3tq],
.tenant-dialog .action-link-muted[b-f8mm01m3tq] {
    color: #dce6ff;
    border-color: rgba(148, 163, 184, 0.35);
    background: rgba(255, 255, 255, 0.04);
}

.tenant-dialog .action-link:hover[b-f8mm01m3tq],
.tenant-dialog .action-link-muted:hover[b-f8mm01m3tq] {
    color: #f8fbff;
    border-color: rgba(169, 190, 255, 0.55);
}

.tenant-dialog-list[b-f8mm01m3tq] {
    display: grid;
    gap: 0.55rem;
}

.tenant-dialog-row[b-f8mm01m3tq] {
    display: grid;
    gap: 0.2rem;
    text-align: left;
    width: 100%;
    border: 1px solid rgba(122, 149, 211, 0.28);
    border-radius: 0.75rem;
    background: rgba(8, 16, 34, 0.72);
    color: #edf4ff;
    padding: 0.75rem 0.85rem;
    cursor: pointer;
    transition: border-color 0.16s ease, background 0.16s ease;
}

.tenant-dialog-row:hover:not(:disabled)[b-f8mm01m3tq],
.tenant-dialog-row.is-selected[b-f8mm01m3tq] {
    border-color: rgba(98, 114, 243, 0.55);
    background: rgba(98, 114, 243, 0.14);
}

.tenant-dialog-row:disabled[b-f8mm01m3tq] {
    opacity: 0.7;
    cursor: wait;
}

.tenant-dialog-row-title[b-f8mm01m3tq] {
    font-weight: 600;
    color: #edf4ff;
}

.tenant-dialog-row-meta[b-f8mm01m3tq] {
    color: #8ea6cf;
    font-size: 0.82rem;
}

.tenant-dialog-row-meta code[b-f8mm01m3tq] {
    color: #c4d0ff;
    background: transparent;
}

.tenant-dialog-blocked[b-f8mm01m3tq] {
    margin-top: 0.25rem;
    border: 1px solid rgba(244, 63, 94, 0.4);
    border-radius: 0.75rem;
    background: rgba(244, 63, 94, 0.1);
    padding: 0.85rem 0.95rem;
    color: #f8e8ec;
}

.tenant-dialog-blocked h4[b-f8mm01m3tq] {
    margin: 0 0 0.45rem;
    color: #ffe4e9 !important;
}

.tenant-dialog-blocked p[b-f8mm01m3tq],
.tenant-dialog-blocked li[b-f8mm01m3tq] {
    color: #f0d4db;
}

.tenant-dialog-blocked a[b-f8mm01m3tq] {
    color: #9eb6ff;
}

.tenant-dialog-blocked ul[b-f8mm01m3tq] {
    margin: 0.55rem 0 0.75rem;
    padding-left: 1.1rem;
}

.stores-error[b-f8mm01m3tq] {
    color: #fda4af;
}

@media (max-width: 980px) {
    .tenant-dialog-backdrop[b-f8mm01m3tq] {
        padding: 1rem;
    }

    .tenant-dialog[b-f8mm01m3tq] {
        width: 100%;
        max-height: calc(100vh - 2rem);
    }
}
/* /Components/TenantSwitcherMenu.razor.rz.scp.css */
.tenant-switcher[b-1vkm3rsxci] {
    position: relative;
}

.menu-user-split[b-1vkm3rsxci] {
    display: flex;
    align-items: stretch;
    width: 100%;
    border-radius: 0.78rem;
    border: 1px solid rgba(143, 163, 255, 0.28);
    background: rgba(15, 23, 42, 0.72);
    overflow: hidden;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.menu-user-split:hover[b-1vkm3rsxci],
.menu-user-split.is-open[b-1vkm3rsxci] {
    border-color: rgba(143, 163, 255, 0.48);
    background: rgba(255, 255, 255, 0.05);
}

.menu-user-split.is-profile-active[b-1vkm3rsxci] {
    background: var(--dashboard-menu-selected-bg);
    border-color: var(--dashboard-menu-selected-border);
}

.menu-user-split-main[b-1vkm3rsxci] {
    flex: 1;
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.5rem 0.55rem 0.5rem 0.62rem;
    text-decoration: none;
    color: inherit;
    border: 0;
    background: transparent;
}

.menu-user-avatar[b-1vkm3rsxci] {
    width: 1.95rem;
    height: 1.95rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid rgba(98, 114, 243, 0.35);
    background: linear-gradient(135deg, #7f8dff, #4f56e8);
    color: #f8fbff;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    overflow: hidden;
}

.menu-user-avatar.has-custom-avatar[b-1vkm3rsxci] {
    border: none;
    background: transparent;
}

.menu-user-avatar-image[b-1vkm3rsxci] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.menu-user-meta[b-1vkm3rsxci] {
    flex: 1;
    min-width: 0;
    display: grid;
}

.menu-user-name[b-1vkm3rsxci] {
    color: #dce6ff;
    font-size: 0.75rem;
    font-weight: 600;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.menu-user-role[b-1vkm3rsxci] {
    color: #687a9a;
    font-size: 0.7rem;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.menu-user-split.is-profile-active .menu-user-name[b-1vkm3rsxci] {
    color: var(--dashboard-menu-selected-text);
}

.menu-user-split.is-profile-active .menu-user-role[b-1vkm3rsxci] {
    color: #8ea3c9;
}

.menu-user-split-toggle[b-1vkm3rsxci] {
    flex: 0 0 1.95rem;
    width: 1.95rem;
    border: 0;
    border-left: 1px solid rgba(143, 163, 255, 0.22);
    background: transparent;
    color: #9eb0d4;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.menu-user-split-toggle:hover[b-1vkm3rsxci] {
    background: rgba(255, 255, 255, 0.04);
    color: #d7e3ff;
}

.menu-user-split-chevron[b-1vkm3rsxci] {
    width: 0.78rem;
    height: 0.78rem;
    display: block;
    transform: rotate(0deg);
    transition: transform 0.18s ease, color 0.18s ease;
}

.menu-user-split.is-open .menu-user-split-chevron[b-1vkm3rsxci] {
    transform: rotate(180deg);
    color: #d7e3ff;
}

.tenant-switcher-popover[b-1vkm3rsxci] {
    position: absolute;
    left: 0;
    bottom: calc(100% + 0.55rem);
    z-index: 80;
    width: min(22rem, calc(100vw - 2rem));
    min-width: 18rem;
    border-radius: 0.9rem;
    border: 1px solid rgba(122, 149, 211, 0.32);
    background: linear-gradient(160deg, rgba(12, 20, 40, 0.98), rgba(16, 28, 54, 0.98));
    box-shadow: 0 18px 40px rgba(2, 8, 24, 0.55);
    padding: 0.72rem 0.55rem 0.55rem;
    color: #e8efff;
}

.tenant-switcher-popover-title[b-1vkm3rsxci] {
    margin: 0 0.4rem 0.5rem;
    color: #7f93b9;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.6rem;
    font-weight: 700;
}

.tenant-switcher-list[b-1vkm3rsxci] {
    display: grid;
    gap: 0.22rem;
    max-height: 18rem;
    overflow: auto;
}

.tenant-switcher-item[b-1vkm3rsxci] {
    width: 100%;
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
    border: 1px solid transparent;
    border-radius: 0.7rem;
    background: transparent;
    color: inherit;
    text-align: left;
    padding: 0.58rem 0.55rem;
    cursor: pointer;
    font: inherit;
}

.tenant-switcher-item:hover[b-1vkm3rsxci] {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.06);
}

.tenant-switcher-item.is-active[b-1vkm3rsxci] {
    background: rgba(45, 212, 191, 0.1);
    border-color: rgba(45, 212, 191, 0.28);
}

.tenant-switcher-item:disabled[b-1vkm3rsxci] {
    opacity: 0.58;
    cursor: not-allowed;
}

.tenant-switcher-dot[b-1vkm3rsxci] {
    width: 0.42rem;
    height: 0.42rem;
    margin-top: 0.42rem;
    border-radius: 999px;
    background: #2dd4bf;
    flex-shrink: 0;
}

.tenant-switcher-item-body[b-1vkm3rsxci] {
    min-width: 0;
    flex: 1;
    display: grid;
    gap: 0.18rem;
}

.tenant-switcher-item-title-row[b-1vkm3rsxci] {
    display: flex;
    align-items: flex-start;
    gap: 0.45rem;
}

.tenant-switcher-item-title-row strong[b-1vkm3rsxci] {
    color: #edf3ff;
    font-size: 0.78rem;
    font-weight: 700;
    line-height: 1.25;
    min-width: 0;
    flex: 1;
}

.tenant-switcher-item-tags[b-1vkm3rsxci] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.3rem;
}

.tenant-switcher-item-meta[b-1vkm3rsxci] {
    color: #8ea3c9;
    font-size: 0.66rem;
    line-height: 1.3;
    word-break: break-word;
}

.tenant-switcher-badge[b-1vkm3rsxci] {
    display: inline-flex;
    align-items: center;
    min-height: 1.05rem;
    padding: 0 0.38rem;
    border-radius: 0.35rem;
    font-size: 0.56rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    white-space: nowrap;
}

.tenant-switcher-badge-default[b-1vkm3rsxci] {
    color: #fdba74;
    background: rgba(234, 88, 12, 0.2);
}

.tenant-switcher-badge-active[b-1vkm3rsxci] {
    color: #5eead4;
    background: transparent;
    padding: 0;
    letter-spacing: 0.08em;
    flex-shrink: 0;
}

.tenant-switcher-status[b-1vkm3rsxci],
.tenant-switcher-error[b-1vkm3rsxci] {
    margin: 0.35rem 0.4rem;
    font-size: 0.72rem;
    line-height: 1.35;
}

.tenant-switcher-status[b-1vkm3rsxci] {
    color: #8ea3c9;
}

.tenant-switcher-error[b-1vkm3rsxci] {
    color: #fca5a5;
}
