/* /Components/Layout/LoginLayout.razor.rz.scp.css */
.login-layout[b-nsgjkulcvu] {
    min-height: 100vh;
    margin: 0;
    padding: 0;
    overflow: hidden;
}
/* /Components/Layout/MainLayout.razor.rz.scp.css */
/* ═══════════════════════════════════════════════════
   MainLayout — Corporate ERP Shell
   ═══════════════════════════════════════════════════ */

/* Variables applied to app-wrapper to avoid Blazor scoped :root issues */
.app-wrapper[b-y3geu7tp0b] {
  --bg-gradient: linear-gradient(135deg, #f1dff1 0%, #8ec5fc 100%);
  --panel-purple: #d5c4ef;
  --glass-bg: rgba(255, 255, 255, 0.7);
  --glass-border: rgba(255, 255, 255, 0.2);
  --accent-gradient: linear-gradient(90deg, #FF5F6D 0%, #FFC371 100%);
  --text-main: #333333;
  --text-muted: #636e72;
  --radius-lg: 2.5rem;
  --blur: blur(20px);
  --sb-text-primary: #ffffff;
  --sb-text-dim: rgb(5 5 5 / 0.7);
  --sb-hover-bg: rgba(255, 255, 255, 0.1);
  --sb-divider: rgba(255, 255, 255, 0.1);
}

/* Typography and Global Resets */
[b-y3geu7tp0b] h1, [b-y3geu7tp0b] h2, [b-y3geu7tp0b] h3, [b-y3geu7tp0b] h4, [b-y3geu7tp0b] h5, [b-y3geu7tp0b] h6 {
    color: var(--text-main);
    font-family: 'Inter', 'Poppins', sans-serif;
    font-weight: 700;
}

/* ─── Wrapper ─── */
.app-wrapper[b-y3geu7tp0b] {
    font-family: 'Inter', 'Poppins', sans-serif;
    min-height: 100vh;
    width: 100vw;
    background: var(--bg-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    box-sizing: border-box;
}

/* ─── Authorized Shell ─── */
.erp-shell-container[b-y3geu7tp0b] {
    width: 100%;
    max-width: 1600px;
    height: calc(100vh - 4rem);
    background: var(--panel-purple);
    border-radius: var(--radius-lg);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    display: flex;
}

.erp-shell[b-y3geu7tp0b] {
    display: flex;
    height: 100%;
    width: 100%;
}

/* ─── Sidebar ─── */
.erp-sidebar[b-y3geu7tp0b] {
    flex: 0 0 260px;
    width: 260px;
    height: 100%;
    background: transparent;
    display: flex;
    flex-direction: column;
    transition: all 0.25s ease;
    z-index: 30;
}

.erp-sidebar.erp-sidebar--mini[b-y3geu7tp0b] {
    flex: 0 0 80px;
    width: 80px;
}

/* ─── Brand ─── */
.erp-brand[b-y3geu7tp0b] {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    border-bottom: 1px solid var(--sb-divider);
    min-height: 80px;
}

.erp-brand-mark[b-y3geu7tp0b] {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
}
.erp-brand-mark svg[b-y3geu7tp0b] {
    width: 100%;
    height: 100%;
}

.erp-brand-text[b-y3geu7tp0b] {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
    overflow: hidden;
}

.erp-brand-name[b-y3geu7tp0b] {
    font-size: 1.25rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: 0.02em;
}

.erp-brand-edition[b-y3geu7tp0b] {
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--sb-text-dim);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.erp-sidebar-toggle[b-y3geu7tp0b] {
    margin-left: auto;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--glass-border);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    color: #fff;
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
    backdrop-filter: var(--blur);
}
.erp-sidebar-toggle:hover[b-y3geu7tp0b] {
    background: rgba(255, 255, 255, 0.3);
}

.erp-sidebar--mini .erp-brand[b-y3geu7tp0b] {
    justify-content: center;
    padding: 1.5rem 0.5rem;
}
.erp-sidebar--mini .erp-sidebar-toggle[b-y3geu7tp0b] {
    display: flex;
    margin: 0;
}
.erp-sidebar--mini .erp-brand-text[b-y3geu7tp0b] {
    display: none;
}

/* ─── Navigation ─── */
.erp-nav[b-y3geu7tp0b] {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 1rem 0;
}

/* ─── Footer ─── */
.erp-sidebar-footer[b-y3geu7tp0b] {
    padding: 1rem 1.5rem;
    border-top: 1px solid var(--sb-divider);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}

.erp-user[b-y3geu7tp0b] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex: 1;
    min-width: 0;
}

.erp-user-avatar[b-y3geu7tp0b] {
    width: 36px;
    height: 36px;
    background: var(--accent-gradient);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
    color: #fff;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(255, 95, 109, 0.3);
}

.erp-user-meta[b-y3geu7tp0b] {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.erp-user-name[b-y3geu7tp0b] {
    font-size: 0.875rem;
    font-weight: 600;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.erp-user-role[b-y3geu7tp0b] {
    font-size: 0.7rem;
    color: var(--sb-text-dim);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.erp-sidebar--mini .erp-user-meta[b-y3geu7tp0b] { display: none; }
.erp-sidebar--mini .erp-sidebar-footer[b-y3geu7tp0b] { padding: 1rem 0.5rem; justify-content: center; }
.erp-sidebar--mini .erp-btn-logout[b-y3geu7tp0b] { display: none; }

/* Hide NavMenu text when sidebar is collapsed to avoid layout issues */
.erp-sidebar--mini[b-y3geu7tp0b]  .nav-section-label { display: none; }
.erp-sidebar--mini[b-y3geu7tp0b]  .nav-text { display: none; }
.erp-sidebar--mini[b-y3geu7tp0b]  .chevron-icon { display: none; }
.erp-sidebar--mini[b-y3geu7tp0b]  .nav-item a.nav-link { padding: 0.75rem; justify-content: center; margin: 0; }
.erp-sidebar--mini[b-y3geu7tp0b]  .nav-item a.nav-link.category-link { padding: 0.75rem; justify-content: center; }
.erp-sidebar--mini[b-y3geu7tp0b]  .nav-item a.nav-link.page-link { padding: 0.75rem; margin: 0; justify-content: center; }

.erp-logout-form[b-y3geu7tp0b] {
    display: flex;
    margin: 0;
    padding: 0;
}

.erp-btn-logout[b-y3geu7tp0b] {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--glass-border);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    color: #fff;
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.erp-btn-logout:hover[b-y3geu7tp0b] {
    background: rgba(255, 0, 0, 0.2);
    border-color: rgba(255, 0, 0, 0.4);
    color: #ffcccc;
}

/* ─── Main Content Area (Glassmorphism) ─── */
.erp-main[b-y3geu7tp0b] {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: var(--glass-bg);
    backdrop-filter: var(--blur);
    -webkit-backdrop-filter: var(--blur);
    border-left: 1px solid var(--glass-border);
    margin: 0.5rem 0.5rem 0.5rem 0;
    border-radius: calc(var(--radius-lg) - 0.5rem);
    box-shadow: -10px 0 30px rgba(0,0,0,0.1);
}

/* ─── Top Bar ─── */
.erp-topbar[b-y3geu7tp0b] {
    height: 64px;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: transparent;
    border-bottom: 1px solid var(--glass-border);
    flex-shrink: 0;
}

.erp-topbar-left[b-y3geu7tp0b] {
    display: flex;
    align-items: center;
}

.erp-breadcrumb[b-y3geu7tp0b] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: var(--text-muted);
    font-weight: 500;
}

.erp-breadcrumb-sep[b-y3geu7tp0b] {
    color: #b2bec3;
    user-select: none;
}

.erp-breadcrumb-current[b-y3geu7tp0b] {
    font-weight: 700;
    color: var(--text-main);
}

.erp-topbar-right[b-y3geu7tp0b] {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.erp-env-badge[b-y3geu7tp0b] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 0.75rem;
    background: rgba(5, 150, 105, 0.1);
    border: 1px solid rgba(5, 150, 105, 0.2);
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    color: #059669;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.erp-env-dot[b-y3geu7tp0b] {
    width: 8px;
    height: 8px;
    background: #059669;
    border-radius: 50%;
    animation: erp-pulse-b-y3geu7tp0b 2s infinite;
}

@keyframes erp-pulse-b-y3geu7tp0b {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

/* ─── Content Wrapper ─── */
.erp-content[b-y3geu7tp0b] {
    flex: 1;
    overflow-y: auto;
    padding: 2rem;
}

/* ─── NotAuthorized Split View (Login Layout) ─── */
.auth-split-view[b-y3geu7tp0b] {
    width: 100%;
    max-width: 1400px;
    height: calc(100vh - 4rem);
    background: var(--panel-purple);
    border-radius: var(--radius-lg);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    display: flex;
    overflow: hidden;
}

.auth-left-section[b-y3geu7tp0b] {
    width: 40%;
    display: flex;
    flex-direction: column;
    padding: 3rem;
    position: relative;
    color: #fff;
}

.auth-top-bar[b-y3geu7tp0b] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
}

.auth-welcome-text[b-y3geu7tp0b] {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    margin: 0;
    color: #fff;
}

.btn-register-cta[b-y3geu7tp0b] {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--glass-border);
    color: #fff;
    padding: 0.5rem 1.25rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: var(--blur);
}
.btn-register-cta:hover[b-y3geu7tp0b] {
    background: rgba(255, 255, 255, 0.2);
}

.auth-illustration-container[b-y3geu7tp0b] {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
}

.isometric-illustration[b-y3geu7tp0b] {
    width: 100%;
    height: 100%;
    background: url('/images/illustration-placeholder.png') center/contain no-repeat;
    min-height: 300px;
}

.auth-right-section[b-y3geu7tp0b] {
    width: 60%;
    padding: 1rem;
    display: flex;
}

.auth-glass-card[b-y3geu7tp0b] {
    flex: 1;
    background: var(--glass-bg);
    backdrop-filter: var(--blur);
    -webkit-backdrop-filter: var(--blur);
    border: 1px solid var(--glass-border);
    border-radius: calc(var(--radius-lg) - 0.5rem);
    box-shadow: -10px 0 30px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem;
    overflow-y: auto;
}

/* ─── Global Auth UI Elements (inputs, buttons, social) ─── */
[b-y3geu7tp0b] .ghost-input {
    background: transparent;
    border: 2px solid rgba(0,0,0,0.1);
    border-radius: 12px;
    padding: 0.875rem 1rem;
    font-size: 1rem;
    color: var(--text-main);
    width: 100%;
    transition: all 0.3s ease;
}
[b-y3geu7tp0b] .ghost-input:focus {
    outline: none;
    border-color: var(--panel-purple);
    background: rgba(255,255,255,0.5);
}

[b-y3geu7tp0b] .btn-primary-3d {
    background: var(--accent-gradient);
    color: #fff;
    border: none;
    border-radius: 30px;
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 700;
    box-shadow: 0 10px 20px rgba(255, 95, 109, 0.4);
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    width: 100%;
}
[b-y3geu7tp0b] .btn-primary-3d:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 25px rgba(255, 95, 109, 0.5);
}

[b-y3geu7tp0b] .social-auth-container {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}
[b-y3geu7tp0b] .social-tile {
    width: 50px;
    height: 50px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}
[b-y3geu7tp0b] .social-tile:hover {
    background: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 12px rgba(0,0,0,0.1);
}

/* ─── Responsive ─── */
@media (max-width: 992px) {
    .auth-split-view[b-y3geu7tp0b] {
        flex-direction: column;
    }
    .auth-left-section[b-y3geu7tp0b] {
        width: 100%;
        padding: 2rem;
    }
    .auth-right-section[b-y3geu7tp0b] {
        width: 100%;
        padding: 0.5rem;
    }
    .erp-brand-text[b-y3geu7tp0b],
    .erp-user-meta[b-y3geu7tp0b] { display: none; }
    .erp-brand[b-y3geu7tp0b] { justify-content: center; padding: 1.5rem 0.5rem; }
}
/* /Components/Layout/NavMenu.razor.rz.scp.css */
/* ═══════════════════════════════════════════════════
   NavMenu — Corporate ERP Sidebar Navigation
   ═══════════════════════════════════════════════════ */

/* ─── Section ─── */
.nav-section[b-lu2ebq04iu] {
    display: flex;
    flex-direction: column;
}

.nav-section-label[b-lu2ebq04iu] {
    padding: 1.25rem 1.5rem 0.5rem;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--sb-text-dim, rgba(255, 255, 255, 0.7));
    white-space: nowrap;
    overflow: hidden;
}

.nav-divider[b-lu2ebq04iu] {
    height: 1px;
    background: var(--sb-divider, rgba(255, 255, 255, 0.1));
    margin: 1rem 1.5rem;
}

/* ─── Chevron ─── */
.chevron-icon[b-lu2ebq04iu] {
    width: 16px;
    height: 16px;
    color: var(--sb-text-dim, rgba(255, 255, 255, 0.7));
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
}

.chevron-icon.expanded[b-lu2ebq04iu] {
    transform: rotate(180deg);
}

/* ─── Submenu Collapse Animation ─── */
.nav-submenu[b-lu2ebq04iu] {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: max-height 0.3s ease, opacity 0.3s ease;
}

.nav-submenu.collapsed[b-lu2ebq04iu] {
    max-height: 0;
    opacity: 0;
    pointer-events: none;
}

.nav-submenu.expanded[b-lu2ebq04iu] {
    max-height: 2000px;
    opacity: 1;
    pointer-events: auto;
}

/* ─── Structural Indentation ─── */
.submenu-container[b-lu2ebq04iu] {
    margin-top: 0.5rem;
    display: flex;
    flex-direction: column;
}

.pages-container[b-lu2ebq04iu] {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

/* ─── Nav Items ─── */
.nav-item[b-lu2ebq04iu] {
    padding: 0 1rem;
    margin-bottom: 4px;
}

.nav-item.category-item[b-lu2ebq04iu] {
    padding: 0;
}

/* ─── Links ─── */
/* Specificity increased by targeting .nav-link to override Bootstrap */
.nav-item[b-lu2ebq04iu]  a.nav-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    color: var(--sb-text-dim, rgba(255, 255, 255, 0.7)); /* Solid fallback */
    text-decoration: none;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.2s ease;
    position: relative;
    line-height: 1.4;
}

/* Category header style */
.nav-item[b-lu2ebq04iu]  a.nav-link.category-link {
    font-size: 0.75rem;
    font-weight: 800;
    padding: 1rem 1.5rem 0.5rem;
    justify-content: space-between;
    cursor: pointer;
    color: var(--sb-text-dim, rgba(255, 255, 255, 0.7));
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 0;
}

.nav-item[b-lu2ebq04iu]  a.nav-link.category-link:hover {
    color: #fff;
    background: transparent;
}

/* Sub-page links */
.nav-item[b-lu2ebq04iu]  a.nav-link.page-link {
    font-size: 0.875rem;
    padding: 0.5rem 1rem 0.5rem 3rem;
    font-weight: 500;
    color: var(--sb-text-dim, rgba(255, 255, 255, 0.7));
    border-radius: 10px;
    margin: 0 1rem;
}

/* ─── Hover States ─── */
.nav-item[b-lu2ebq04iu]  a.nav-link:hover:not(.category-link) {
    background: var(--sb-hover-bg, rgba(255, 255, 255, 0.1));
    color: #fff;
}

/* ─── Active States ─── */
.nav-item[b-lu2ebq04iu]  a.nav-link.active {
    background: var(--sb-hover-bg, rgba(255, 255, 255, 0.1));
    color: #fff;
    font-weight: 700;
}

/* The vertical left accent bar on active items */
.nav-item[b-lu2ebq04iu]  a.nav-link.active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 15%;
    bottom: 15%;
    width: 4px;
    background: var(--accent-gradient, linear-gradient(90deg, #FF5F6D 0%, #FFC371 100%));
    border-radius: 4px;
}

.nav-item[b-lu2ebq04iu]  a.nav-link.page-link.active::before {
    left: -1rem;
}

.nav-item[b-lu2ebq04iu]  a.nav-link.page-link.active {
    color: #fff;
    background: var(--sb-hover-bg, rgba(255, 255, 255, 0.1));
}

/* ─── Icon Wrapper ─── */
.nav-icon-wrap[b-lu2ebq04iu] {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    flex-shrink: 0;
    transition: all 0.2s ease;
    background: rgba(255, 255, 255, 0.05);
}

/* ─── Icon SVG ─── */
.nav-icon[b-lu2ebq04iu] {
    width: 18px;
    height: 18px;
    color: var(--sb-text-dim, rgba(255, 255, 255, 0.7));
    transition: all 0.2s ease;
}

.nav-item[b-lu2ebq04iu]  a.nav-link.active .nav-icon-wrap {
    background: var(--accent-gradient, linear-gradient(90deg, #FF5F6D 0%, #FFC371 100%));
    border: none;
}
.nav-item[b-lu2ebq04iu]  a.nav-link.active .nav-icon {
    color: #fff;
}

.nav-item[b-lu2ebq04iu]  a.nav-link:hover:not(.active) .nav-icon {
    color: #fff;
}

/* ─── Text ─── */
.nav-text[b-lu2ebq04iu] {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: inherit;
}
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-fpflf9lnk8],
.components-reconnect-repeated-attempt-visible[b-fpflf9lnk8],
.components-reconnect-failed-visible[b-fpflf9lnk8],
.components-pause-visible[b-fpflf9lnk8],
.components-resume-failed-visible[b-fpflf9lnk8],
.components-rejoining-animation[b-fpflf9lnk8] {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-fpflf9lnk8],
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-fpflf9lnk8],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-fpflf9lnk8],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-fpflf9lnk8],
#components-reconnect-modal.components-reconnect-retrying[b-fpflf9lnk8],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-fpflf9lnk8],
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-fpflf9lnk8],
#components-reconnect-modal.components-reconnect-failed[b-fpflf9lnk8],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-fpflf9lnk8] {
    display: block;
}


#components-reconnect-modal[b-fpflf9lnk8] {
    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-fpflf9lnk8 0.5s both;
    &[open]

{
    animation: components-reconnect-modal-slideUp-b-fpflf9lnk8 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-fpflf9lnk8 0.5s ease-in-out 0.3s;
    animation-fill-mode: both;
}

}

#components-reconnect-modal[b-fpflf9lnk8]::backdrop {
    background-color: rgba(0, 0, 0, 0.4);
    animation: components-reconnect-modal-fadeInOpacity-b-fpflf9lnk8 0.5s ease-in-out;
    opacity: 1;
}

@keyframes components-reconnect-modal-slideUp-b-fpflf9lnk8 {
    0% {
        transform: translateY(30px) scale(0.95);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes components-reconnect-modal-fadeInOpacity-b-fpflf9lnk8 {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes components-reconnect-modal-fadeOutOpacity-b-fpflf9lnk8 {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.components-reconnect-container[b-fpflf9lnk8] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#components-reconnect-modal p[b-fpflf9lnk8] {
    margin: 0;
    text-align: center;
}

#components-reconnect-modal button[b-fpflf9lnk8] {
    border: 0;
    background-color: #6b9ed2;
    color: white;
    padding: 4px 24px;
    border-radius: 4px;
}

    #components-reconnect-modal button:hover[b-fpflf9lnk8] {
        background-color: #3b6ea2;
    }

    #components-reconnect-modal button:active[b-fpflf9lnk8] {
        background-color: #6b9ed2;
    }

.components-rejoining-animation[b-fpflf9lnk8] {
    position: relative;
    width: 80px;
    height: 80px;
}

    .components-rejoining-animation div[b-fpflf9lnk8] {
        position: absolute;
        border: 3px solid #0087ff;
        opacity: 1;
        border-radius: 50%;
        animation: components-rejoining-animation-b-fpflf9lnk8 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .components-rejoining-animation div:nth-child(2)[b-fpflf9lnk8] {
            animation-delay: -0.5s;
        }

@keyframes components-rejoining-animation-b-fpflf9lnk8 {
    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/AdminConfigSetup.razor.rz.scp.css */
.config-setup-container[b-5yj98yu0jn] {
    /* Extracting CSS Variables to match the screenshot UI */
    --bg-surface: #ffffff;
    --text-main: #111827;
    --text-muted: #6b7280;
    --border-light: #f3f4f6;
    --border-default: #e5e7eb;
    --primary-accent: #6366f1; /* Purple from tabs in screenshot */
    --btn-primary-bg: #ff5a5f; /* Coral/Red button from screenshot */
    --btn-primary-hover: #fa4a50;

    --radius-lg: 16px;
    --radius-md: 8px;
    --shadow-card: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);

    padding: 0;
    font-family: inherit;
}

/* Header Layout */
.page-header-section[b-5yj98yu0jn] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding: 0 4px;
}

.page-title[b-5yj98yu0jn] {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--text-main);
    margin-bottom: 6px;
}

.page-subtitle[b-5yj98yu0jn] {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin: 0;
}

/* Primary Button Design (Matches "+ Add New Company") */
.btn-primary-custom[b-5yj98yu0jn] {
    background-color: var(--btn-primary-bg);
    color: white;
    border: none;
    border-radius: 9999px; /* Pill shape */
    padding: 10px 24px;
    font-weight: 500;
    font-size: 0.875rem;
    transition: all 0.2s ease;
    box-shadow: 0 2px 4px rgba(255, 90, 95, 0.2);
}

.btn-primary-custom:hover[b-5yj98yu0jn] {
    background-color: var(--btn-primary-hover);
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 6px rgba(255, 90, 95, 0.25);
}

/* Main White Area */
.main-content-wrapper[b-5yj98yu0jn] {
    background-color: var(--bg-surface);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    padding: 24px 32px;
    min-height: 60vh;
}

.border-bottom-custom[b-5yj98yu0jn] {
    border-bottom: 1px solid var(--border-default);
}

/* Form Elements & Labels (Matches the small uppercase table headers in screenshot) */
.form-label[b-5yj98yu0jn] {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom: 8px;
}

.config-input[b-5yj98yu0jn] {
    border: 1px solid var(--border-default);
    border-radius: var(--radius-md);
    padding: 10px 14px;
    font-size: 0.875rem;
    color: var(--text-main);
    background-color: #f9fafb;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.config-input:focus[b-5yj98yu0jn] {
    border-color: var(--primary-accent);
    background-color: var(--bg-surface);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.15);
    outline: none;
}

/* Cards (Clean look instead of heavy colored blocks) */
.card-premium[b-5yj98yu0jn] {
    background-color: var(--bg-surface);
    border: 1px solid var(--border-default);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: box-shadow 0.2s;
}

.card-premium:hover[b-5yj98yu0jn] {
    box-shadow: var(--shadow-card);
}

.panel-heading[b-5yj98yu0jn] {
    padding: 14px 16px;
    font-weight: 600;
    font-size: 0.875rem;
    border-bottom: 1px solid var(--border-light);
    background-color: #fcfcfc;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Subtle Icon Colors */
.icon-success[b-5yj98yu0jn] { color: #10b981; font-size: 1.1rem; }
.icon-info[b-5yj98yu0jn] { color: #3b82f6; font-size: 1.1rem; }
.icon-warning[b-5yj98yu0jn] { color: #f59e0b; font-size: 1.1rem; }
.icon-danger[b-5yj98yu0jn] { color: #ef4444; font-size: 1.1rem; }

/* Toggles & Switches */
.switch-label-color[b-5yj98yu0jn] {
    color: var(--text-main);
    font-weight: 500;
    font-size: 0.875rem;
    cursor: pointer;
}

.custom-switch .form-check-input[b-5yj98yu0jn] {
    cursor: pointer;
    width: 2.5em;
    height: 1.25em;
    margin-right: 12px;
}

.custom-switch .form-check-input:checked[b-5yj98yu0jn] {
    background-color: var(--primary-accent);
    border-color: var(--primary-accent);
}

.custom-radio .form-check-input:checked[b-5yj98yu0jn] {
    background-color: var(--primary-accent);
    border-color: var(--primary-accent);
}

/* Alerts */
.minimal-alert[b-5yj98yu0jn] {
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    border: none;
}

.config-success-alert[b-5yj98yu0jn] {
    background-color: #ecfdf5;
    color: #065f46;
}
/* /Components/Pages/AdminAccess/AdminNotificationSetup.razor.rz.scp.css */
:root[b-53z5redk86] {
    --bg-success-subtle: #d1e7dd;
    --bg-danger-subtle: #f8d7da;
    --text-success: #0f5132;
    --text-danger: #842029;
    --border-success-subtle: #badbcc;
    --border-danger-subtle: #f5c2c7;
}

.fw-bold[b-53z5redk86] { 
    font-weight: 700 !important; 
}

.bg-success-subtle[b-53z5redk86] { 
    background-color: var(--bg-success-subtle) !important; 
}

.bg-danger-subtle[b-53z5redk86] { 
    background-color: var(--bg-danger-subtle) !important; 
}

.text-success[b-53z5redk86] { 
    color: var(--text-success) !important; 
}

.text-danger[b-53z5redk86] { 
    color: var(--text-danger) !important; 
}

.border-success-subtle[b-53z5redk86] { 
    border-color: var(--border-success-subtle) !important; 
}

.border-danger-subtle[b-53z5redk86] { 
    border-color: var(--border-danger-subtle) !important; 
}
/* /Components/Pages/AdminAccess/AdminReportSetup.razor.rz.scp.css */
/* ─── Global Variables (Solid Modern Theme matching screenshots) ─── */
.management-container[b-p0buf8n1rx] {
    --text-main: #111827;
    --text-muted: #6b7280;
    --brand-primary: #542296; /* If you need the purple accent */
    --brand-coral: #ff4757;
    --brand-coral-hover: #ff2e43;
    --brand-coral-soft: rgba(255, 71, 87, 0.1);
    --card-bg: #ffffff;
    --border-color: #e5e7eb;
    --input-border: #d1d5db;
    --bg-light: #f9fafb;
    --bg-light-hover: #f3f4f6;

    padding: 1.5rem;
    animation: fadeIn-b-p0buf8n1rx 0.4s ease-out;
}

@keyframes fadeIn-b-p0buf8n1rx {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ─── Solid White Card ─── */
.solid-panel[b-p0buf8n1rx] {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}

.panel-header[b-p0buf8n1rx] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 1.5rem;
}

.panel-title[b-p0buf8n1rx] {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-main);
    margin: 0;
}

.panel-subtitle[b-p0buf8n1rx] {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0.25rem 0 0 0;
}

/* ─── Buttons ─── */
.btn-primary-solid[b-p0buf8n1rx] {
    display: inline-flex;
    align-items: center;
    background: var(--brand-coral);
    color: #ffffff;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-primary-solid:hover[b-p0buf8n1rx] {
    background: var(--brand-coral-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(255, 71, 87, 0.3);
    color: white;
}

.btn-ghost[b-p0buf8n1rx] {
    background: transparent;
    color: var(--text-muted);
    font-weight: 600;
    padding: 0.6rem 1.25rem;
    border-radius: 50px;
    border: 1px solid var(--input-border);
    transition: all 0.2s;
}

.btn-ghost:hover[b-p0buf8n1rx] {
    background: var(--bg-light);
    color: var(--text-main);
}

.btn-icon[b-p0buf8n1rx] {
    background: transparent;
    border: 1px solid transparent;
    color: var(--text-muted);
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    padding: 0;
}

.btn-icon:hover[b-p0buf8n1rx] {
    background: var(--bg-light-hover);
    border-color: var(--border-color);
    color: var(--text-main);
}

/* ─── Tabs ─── */
.nav-tabs[b-p0buf8n1rx] {
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 1.5rem;
    gap: 1rem;
    display: flex;
    list-style: none;
    padding: 0;
}

.nav-tabs .nav-item[b-p0buf8n1rx] {
    margin-bottom: -1px;
}

.nav-tabs .nav-link[b-p0buf8n1rx] {
    color: var(--text-muted);
    font-weight: 600;
    border: none;
    padding: 0.75rem 1rem;
    background: transparent;
    cursor: pointer;
    font-size: 0.95rem;
    border-bottom: 2px solid transparent;
    transition: all 0.2s;
}

.nav-tabs .nav-link:hover[b-p0buf8n1rx] {
    color: var(--text-main);
    border-bottom-color: var(--input-border);
}

.nav-tabs .nav-link.active[b-p0buf8n1rx] {
    color: var(--brand-coral);
    border-bottom-color: var(--brand-coral);
}


/* ─── Custom Table Styling ─── */
.custom-table[b-p0buf8n1rx] {
    margin-bottom: 0;
    border-collapse: separate;
    border-spacing: 0 0.5rem;
}

.custom-table th[b-p0buf8n1rx] {
    border-bottom: none;
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 1rem;
}

.custom-table td[b-p0buf8n1rx] {
    background: var(--bg-light);
    border: none;
    padding: 1rem;
    font-size: 0.9rem;
    color: var(--text-main);
}

.custom-table tbody tr[b-p0buf8n1rx] {
    transition: transform 0.2s;
}

.custom-table tbody tr:hover td[b-p0buf8n1rx] {
    background: var(--bg-light-hover);
}

.custom-table td:first-child[b-p0buf8n1rx] { border-radius: 12px 0 0 12px; }
.custom-table td:last-child[b-p0buf8n1rx] { border-radius: 0 12px 12px 0; }

/* ─── Status Badges ─── */
.badge-status[b-p0buf8n1rx] {
    padding: 0.35rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
}

.badge-status.success[b-p0buf8n1rx] {
    background: rgba(16, 185, 129, 0.1);
    color: #059669;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.badge-status.danger[b-p0buf8n1rx] {
    background: rgba(239, 68, 68, 0.1);
    color: #dc2626;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

/* ─── Modal & Inputs ─── */
.custom-modal-backdrop[b-p0buf8n1rx] {
    background: rgba(15, 23, 42, 0.4) !important;
    backdrop-filter: blur(4px);
    z-index: 1050;
}

.solid-modal[b-p0buf8n1rx] {
    background: var(--card-bg);
    border-radius: 16px;
    border: none;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.custom-input[b-p0buf8n1rx] {
    background: var(--card-bg);
    border: 1px solid var(--input-border);
    border-radius: 8px;
    padding: 0.6rem 1rem;
    color: var(--text-main);
    transition: all 0.2s;
}

.custom-input:focus[b-p0buf8n1rx] {
    border-color: var(--brand-coral);
    box-shadow: 0 0 0 3px var(--brand-coral-soft);
    outline: none;
}

.custom-input:disabled[b-p0buf8n1rx] {
    background-color: var(--bg-light);
    color: var(--text-muted);
    cursor: not-allowed;
}
/* /Components/Pages/AdminAccess/CompanyManagement.razor.rz.scp.css */
.management-container[b-9t9gd9crmf] { padding: 1.5rem; background: #f8fafc; min-height: calc(100vh - 64px); }
.solid-panel[b-9t9gd9crmf] { background: white; border-radius: 12px; box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1); overflow: hidden; border: 1px solid #e2e8f0; }
.panel-header[b-9t9gd9crmf] { padding: 1.25rem 1.5rem; border-bottom: 1px solid #f1f5f9; background: #fff; }
.panel-title[b-9t9gd9crmf] { font-size: 1.25rem; font-weight: 700; color: #1e293b; margin: 0; }
.panel-subtitle[b-9t9gd9crmf] { font-size: 0.875rem; color: #64748b; margin-top: 2px; }
.form-section-title[b-9t9gd9crmf] { font-size: 0.8125rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: #475569; }
.custom-input[b-9t9gd9crmf] { border-radius: 8px; border: 1.5px solid #e2e8f0; padding: 0.625rem 0.875rem; font-size: 0.875rem; transition: all 0.2s; }
.custom-input:focus[b-9t9gd9crmf] { border-color: #3b82f6; box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1); outline: none; }
.btn-primary-solid[b-9t9gd9crmf] { background: #2563eb; color: white; border: none; padding: 0.625rem 1.25rem; border-radius: 8px; font-weight: 600; font-size: 0.875rem; transition: all 0.2s; }
.btn-primary-solid:hover[b-9t9gd9crmf] { background: #1d4ed8; transform: translateY(-1px); }
.btn-outline-custom[b-9t9gd9crmf] { background: white; color: #475569; border: 1.5px solid #e2e8f0; padding: 0.625rem 1.25rem; border-radius: 8px; font-weight: 600; font-size: 0.875rem; transition: all 0.2s; }
.btn-outline-custom:hover[b-9t9gd9crmf] { background: #f1f5f9; border-color: #cbd5e1; }
.table-container[b-9t9gd9crmf] { border-radius: 10px; overflow: hidden; border: 1px solid #e2e8f0; }
.custom-table thead[b-9t9gd9crmf] { background: #f8fafc; }
.custom-table th[b-9t9gd9crmf] { font-weight: 600; text-transform: uppercase; font-size: 0.75rem; letter-spacing: 0.05em; color: #64748b; padding: 1rem; border-bottom: 1px solid #e2e8f0; }
.custom-table td[b-9t9gd9crmf] { padding: 1rem; vertical-align: middle; font-size: 0.875rem; border-bottom: 1px solid #f1f5f9; }
.btn-action[b-9t9gd9crmf] { width: 32px; height: 32px; border-radius: 6px; border: none; display: inline-flex; align-items: center; justify-content: center; transition: all 0.2s; }
.btn-action.edit[b-9t9gd9crmf] { background: #eff6ff; color: #2563eb; }
.btn-action.edit:hover[b-9t9gd9crmf] { background: #dbeafe; }
.search-box input[b-9t9gd9crmf] { border: 1.5px solid #e2e8f0; min-width: 250px; border-radius: 8px; padding-left: 1rem; }
.search-box input:focus[b-9t9gd9crmf] { border-color: #3b82f6; outline: none; box-shadow: 0 0 0 3px rgba(59,130,246,0.1); }
/* /Components/Pages/AdminAccess/EmployeeAccess.razor.rz.scp.css */
.management-container[b-zp8lpf5xyq] {
    padding: 1.5rem;
    background: #f8fafc;
    min-height: calc(100vh - 64px);
}
.solid-panel[b-zp8lpf5xyq] {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
    overflow: hidden;
    border: 1px solid #e2e8f0;
}
.panel-header[b-zp8lpf5xyq] {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid #f1f5f9;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
}
.panel-title[b-zp8lpf5xyq] {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
}
.panel-subtitle[b-zp8lpf5xyq] {
    font-size: 0.875rem;
    color: #64748b;
    margin: 0.25rem 0 0 0;
}
.section-card[b-zp8lpf5xyq] {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
}
.section-title[b-zp8lpf5xyq] {
    font-size: 1rem;
    font-weight: 600;
    color: #334155;
    border-bottom: 2px solid #3b82f6;
    display: inline-block;
    padding-bottom: 2px;
}
.custom-input[b-zp8lpf5xyq] {
    border-radius: 6px;
    border: 1px solid #cbd5e1;
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
    transition: all 0.2s;
}
.custom-input:focus[b-zp8lpf5xyq] {
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}
.btn-primary-solid[b-zp8lpf5xyq] {
    background: #2563eb;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.875rem;
    transition: all 0.2s;
}
.btn-primary-solid:hover[b-zp8lpf5xyq] {
    background: #1d4ed8;
}
.btn-primary-solid:disabled[b-zp8lpf5xyq] {
    background: #94a3b8;
    cursor: not-allowed;
}
.btn-icon[b-zp8lpf5xyq] {
    background: transparent;
    border: none;
    padding: 4px;
    border-radius: 4px;
    transition: all 0.2s;
}
.btn-icon:hover[b-zp8lpf5xyq] {
    background: #fee2e2;
}

/* /Components/Pages/AdminAccess/FeatureManagement.razor.rz.scp.css */
/* 1. Moved variables to the main container so Blazor Scoped CSS recognizes them */
.management-container[b-lk36aj0pvv] {
    /* Primary Action Colors */
    --primary-btn-bg: #fc5c7d;
    --primary-btn-hover: #e04a68;

    /* Tab & Focus Colors */
    --tab-active-color: #4c309e;
    --tab-active-border: #4c309e;
    --input-focus: #4c309e;

    /* Backgrounds */
    --bg-body: #f3f4f6;
    --bg-card: #ffffff;

    /* Text Colors */
    --text-main: #111827;
    --text-muted: #6b7280;
    --text-light: #9ca3af;

    /* Borders */
    --border-color: #e5e7eb;
    --input-border: #ced4da;

    /* Status Colors */
    --success-bg: #d1fae5;
    --success-text: #065f46;
    --danger-bg: #fee2e2;
    --danger-text: #991b1b;

    /* Upload Box Specific */
    --upload-border: #c4b5fd;
    --upload-bg: #fcfaff;
    --upload-bg-hover: #f3f0ff;

    /* Dimensions & Radii */
    --border-radius-sm: 6px;
    --border-radius-md: 12px;
    --border-radius-lg: 16px;
    --transition-speed: 0.2s ease-in-out;

    /* Base Container Styles */
    padding: 24px;
    background-color: var(--bg-body, #f3f4f6);
    min-height: 100vh;
    font-family: 'Inter', 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

/* -------------------------------------- */

.solid-panel[b-lk36aj0pvv] {
    background-color: var(--bg-card, #ffffff);
    border-radius: var(--border-radius-lg, 16px);
    padding: 24px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
}

.panel-title[b-lk36aj0pvv] {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-main, #111827);
    margin-bottom: 4px;
}

.panel-subtitle[b-lk36aj0pvv] {
    font-size: 0.875rem;
    color: var(--text-muted, #6b7280);
    margin: 0;
}

/* Buttons - Added fallback hex codes so they always render */
.btn-primary-solid[b-lk36aj0pvv] {
    background-color: var(--primary-btn-bg, #fc5c7d) !important;
    color: #ffffff !important;
    border: none !important;
    padding: 10px 24px !important;
    border-radius: 50px !important;
    font-weight: 600 !important;
    font-size: 0.875rem !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    transition: background-color var(--transition-speed, 0.2s);
}

.btn-primary-solid:hover[b-lk36aj0pvv] {
    background-color: var(--primary-btn-hover, #e04a68) !important;
}

.btn-ghost[b-lk36aj0pvv] {
    background-color: transparent !important;
    color: var(--text-muted, #6b7280) !important;
    border: 1px solid var(--border-color, #e5e7eb) !important;
    padding: 10px 24px !important;
    border-radius: 50px !important;
    font-weight: 600 !important;
    font-size: 0.875rem !important;
    cursor: pointer !important;
    transition: all var(--transition-speed, 0.2s);
}

.btn-ghost:hover[b-lk36aj0pvv] {
    background-color: #f9fafb !important;
    color: var(--text-main, #111827) !important;
}

.btn-icon[b-lk36aj0pvv] {
    background: transparent;
    border: 1px solid var(--border-color, #e5e7eb);
    border-radius: var(--border-radius-sm, 6px);
    padding: 6px;
    color: var(--text-muted, #6b7280);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 8px;
    transition: all var(--transition-speed, 0.2s);
}

.btn-icon:hover[b-lk36aj0pvv] {
    background-color: var(--bg-body, #f3f4f6);
    color: var(--text-main, #111827);
}

/* Tabs */
.nav-tabs[b-lk36aj0pvv] {
    border-bottom: 2px solid var(--border-color, #e5e7eb);
    margin-bottom: 16px;
}

.nav-tabs .nav-link[b-lk36aj0pvv] {
    border: none;
    background: transparent;
    color: var(--text-muted, #6b7280);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 12px 16px;
    border-bottom: 2px solid transparent;
    cursor: pointer;
    transition: color var(--transition-speed, 0.2s);
}

.nav-tabs .nav-link:hover[b-lk36aj0pvv] {
    color: var(--text-main, #111827);
}

.nav-tabs .nav-link.active[b-lk36aj0pvv] {
    color: var(--tab-active-color, #4c309e);
    border-bottom: 2px solid var(--tab-active-border, #4c309e);
}

/* Tables */
.custom-table[b-lk36aj0pvv] {
    width: 100%;
    border-collapse: collapse;
}

.custom-table th[b-lk36aj0pvv] {
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    color: var(--text-light, #9ca3af);
    font-weight: 600;
    padding: 16px;
    border-bottom: 1px solid var(--border-color, #e5e7eb);
}

.custom-table td[b-lk36aj0pvv] {
    padding: 16px;
    vertical-align: middle;
    border-bottom: 1px solid var(--border-color, #e5e7eb);
    font-size: 0.875rem;
}

/* Badges */
.badge-status[b-lk36aj0pvv] {
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    display: inline-block;
}

.badge-status.success[b-lk36aj0pvv] {
    background-color: var(--success-bg, #d1fae5);
    color: var(--success-text, #065f46);
}

.badge-status.danger[b-lk36aj0pvv] {
    background-color: var(--danger-bg, #fee2e2);
    color: var(--danger-text, #991b1b);
}

/* Modals */
.custom-modal-backdrop[b-lk36aj0pvv] {
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(2px);
}

.solid-modal[b-lk36aj0pvv] {
    background-color: #ffffff !important; /* Forces modal background to be white */
    border-radius: var(--border-radius-lg, 16px);
    border: none;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

/* Inputs - Explicit borders and backgrounds */
.custom-input[b-lk36aj0pvv] {
    border: 1px solid var(--input-border, #ced4da) !important; /* Forced border */
    border-radius: 8px !important;
    padding: 10px 14px !important;
    font-size: 0.875rem !important;
    background-color: #ffffff !important; /* Forced white background */
    color: var(--text-main, #111827) !important;
    width: 100%;
    display: block !important;
    transition: border-color var(--transition-speed, 0.2s);
}

.custom-input:focus[b-lk36aj0pvv] {
    border-color: var(--input-focus, #4c309e) !important;
    box-shadow: 0 0 0 2px rgba(76, 48, 158, 0.15) !important;
    outline: none !important;
}

.form-label[b-lk36aj0pvv] {
    margin-bottom: 6px;
    display: block;
}

/* Upload & Preview Box */
.upload-container[b-lk36aj0pvv] {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.upload-box[b-lk36aj0pvv] {
    border: 2px dashed var(--upload-border, #c4b5fd) !important;
    border-radius: var(--border-radius-md, 12px);
    padding: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: var(--upload-bg, #fcfaff) !important;
    min-height: 150px;
    transition: all var(--transition-speed, 0.2s);
}

.upload-box:hover[b-lk36aj0pvv] {
    background-color: var(--upload-bg-hover, #f3f0ff) !important;
    border-color: var(--tab-active-color, #4c309e) !important;
}

.upload-placeholder[b-lk36aj0pvv] {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--text-muted, #6b7280);
    font-size: 0.875rem;
    font-weight: 500;
}

.upload-placeholder svg[b-lk36aj0pvv] {
    width: 32px;
    height: 32px;
    margin-bottom: 12px;
    color: var(--tab-active-color, #4c309e);
}

.upload-preview-img[b-lk36aj0pvv] {
    max-height: 120px;
    max-width: 100%;
    object-fit: contain;
    border-radius: var(--border-radius-sm, 6px);
}
/* /Components/Pages/AdminAccess/ModuleAccessByCompany.razor.rz.scp.css */
/* ─── Global Variables (Solid Modern Theme) ─── */
.management-container[b-jljz5rec4m] {
    --text-main: #111827;
    --text-muted: #6b7280;
    --brand-coral: #ff4757;
    --brand-coral-hover: #ff2e43;
    --brand-coral-soft: rgba(255, 71, 87, 0.1);
    --card-bg: #ffffff;
    --bg-light: #f9fafb;
    --bg-light-hover: #f3f4f6;
    --border-color: #e5e7eb;
    --input-border: #d1d5db;
    --shadow-sm: 0 4px 15px rgba(0, 0, 0, 0.04);
    --shadow-btn: 0 4px 10px rgba(255, 71, 87, 0.3);

    padding: 1.5rem;
    animation: fadeIn-b-jljz5rec4m 0.4s ease-out;
}

@keyframes fadeIn-b-jljz5rec4m {
    from { opacity: 0; transform: translateY(5px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ─── Solid White Card ─── */
.solid-panel[b-jljz5rec4m] {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow-sm);
}

.panel-title[b-jljz5rec4m] {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-main);
}

.panel-subtitle[b-jljz5rec4m] {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ─── Inputs ─── */
.custom-input[b-jljz5rec4m] {
    background: var(--card-bg);
    border: 1px solid var(--input-border);
    border-radius: 8px;
    padding: 0.6rem 1rem;
    color: var(--text-main);
    transition: all 0.2s;
}

.custom-input:focus[b-jljz5rec4m] {
    border-color: var(--brand-coral);
    box-shadow: 0 0 0 3px var(--brand-coral-soft);
    outline: none;
}

/* ─── Coral Primary Button ─── */
.btn-primary-solid[b-jljz5rec4m] {
    display: inline-flex;
    align-items: center;
    background: var(--brand-coral);
    color: #ffffff;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-primary-solid:hover:not(:disabled)[b-jljz5rec4m] {
    background: var(--brand-coral-hover);
    transform: translateY(-1px);
    box-shadow: var(--shadow-btn);
}

.btn-primary-solid:disabled[b-jljz5rec4m] {
    background: var(--border-color);
    color: var(--text-muted);
    cursor: not-allowed;
}

/* ─── Layout & Tree Styling ─── */
@media (min-width: 992px) {
    .border-end-desktop[b-jljz5rec4m] {
        border-right: 1px solid var(--border-color);
    }
}

.tree-list[b-jljz5rec4m] {
    list-style: none;
    padding: 0;
    margin: 0;
}

.module-card[b-jljz5rec4m] {
    border-color: var(--border-color) !important;
    overflow: hidden;
}

.module-header[b-jljz5rec4m] {
    background-color: var(--bg-light) !important;
    border-bottom: 1px solid var(--border-color);
    transition: background 0.2s;
}

.module-header:hover[b-jljz5rec4m] {
    background-color: var(--bg-light-hover) !important;
}

.empty-state-box[b-jljz5rec4m] {
    border: 2px dashed var(--border-color);
    border-radius: 12px;
    background: var(--bg-light);
}

/* ─── Checkbox Overrides ─── */
.form-check-input:checked[b-jljz5rec4m] {
    background-color: var(--brand-coral);
    border-color: var(--brand-coral);
}

.form-check-input:focus[b-jljz5rec4m] {
    box-shadow: 0 0 0 0.25rem var(--brand-coral-soft);
}
/* /Components/Pages/AdminAccess/ModuleSetup.razor.rz.scp.css */
/* ─── Global Variables (Solid Modern Theme) ─── */
.management-container[b-r80q8blyr8] {
    --text-main: #111827;
    --text-muted: #6b7280;
    --brand-coral: #ff4757;
    --brand-coral-hover: #ff2e43;
    --brand-coral-soft: rgba(255, 71, 87, 0.1);
    --card-bg: #ffffff;
    --border-color: #e5e7eb;
    --input-border: #d1d5db;
    --bg-light: #f9fafb;
    --bg-light-hover: #f3f4f6;

    padding: 1.5rem;
    animation: fadeIn-b-r80q8blyr8 0.4s ease-out;
}

@keyframes fadeIn-b-r80q8blyr8 {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ─── Solid White Card ─── */
.solid-panel[b-r80q8blyr8] {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}

.panel-header[b-r80q8blyr8] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 1.5rem;
}

.panel-title[b-r80q8blyr8] {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-main);
    margin: 0;
}

.panel-subtitle[b-r80q8blyr8] {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0.25rem 0 0 0;
}

/* ─── Buttons ─── */
.btn-primary-solid[b-r80q8blyr8] {
    display: inline-flex;
    align-items: center;
    background: var(--brand-coral);
    color: #ffffff;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-primary-solid:hover[b-r80q8blyr8] {
    background: var(--brand-coral-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(255, 71, 87, 0.3);
    color: white;
}

.btn-ghost[b-r80q8blyr8] {
    background: transparent;
    color: var(--text-muted);
    font-weight: 600;
    padding: 0.6rem 1.25rem;
    border-radius: 50px;
    border: 1px solid var(--input-border);
    transition: all 0.2s;
}

.btn-ghost:hover[b-r80q8blyr8] {
    background: var(--bg-light);
    color: var(--text-main);
}

.btn-icon[b-r80q8blyr8] {
    background: transparent;
    border: 1px solid transparent;
    color: var(--text-muted);
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    padding: 0;
}

.btn-icon:hover[b-r80q8blyr8] {
    background: var(--bg-light-hover);
    border-color: var(--border-color);
    color: var(--text-main);
}

/* ─── Custom Table Styling ─── */
.custom-table[b-r80q8blyr8] {
    margin-bottom: 0;
    border-collapse: separate;
    border-spacing: 0 0.5rem;
}

.custom-table th[b-r80q8blyr8] {
    border-bottom: none;
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 1rem;
}

.custom-table td[b-r80q8blyr8] {
    background: var(--bg-light);
    border: none;
    padding: 1rem;
    font-size: 0.9rem;
    color: var(--text-main);
}

.custom-table tbody tr[b-r80q8blyr8] {
    transition: transform 0.2s;
}

.custom-table tbody tr:hover td[b-r80q8blyr8] {
    background: var(--bg-light-hover);
}

.custom-table td:first-child[b-r80q8blyr8] { border-radius: 12px 0 0 12px; }
.custom-table td:last-child[b-r80q8blyr8] { border-radius: 0 12px 12px 0; }

/* ─── Status Badges ─── */
.badge-status[b-r80q8blyr8] {
    padding: 0.35rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
}

.badge-status.success[b-r80q8blyr8] {
    background: rgba(16, 185, 129, 0.1);
    color: #059669;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.badge-status.danger[b-r80q8blyr8] {
    background: rgba(239, 68, 68, 0.1);
    color: #dc2626;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

/* ─── Modal & Inputs ─── */
.custom-modal-backdrop[b-r80q8blyr8] {
    background: rgba(15, 23, 42, 0.4) !important;
    backdrop-filter: blur(4px);
    z-index: 1050;
}

.solid-modal[b-r80q8blyr8] {
    background: var(--card-bg);
    border-radius: 16px;
    border: none;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.custom-input[b-r80q8blyr8] {
    background: var(--card-bg);
    border: 1px solid var(--input-border);
    border-radius: 8px;
    padding: 0.6rem 1rem;
    color: var(--text-main);
    transition: all 0.2s;
}

.custom-input:focus[b-r80q8blyr8] {
    border-color: var(--brand-coral);
    box-shadow: 0 0 0 3px var(--brand-coral-soft);
    outline: none;
}

.custom-input:disabled[b-r80q8blyr8] {
    background-color: var(--bg-light);
    color: var(--text-muted);
    cursor: not-allowed;
}

/* ─── Drag & Drop Image Box ─── */
.logo-upload-box:hover[b-r80q8blyr8] {
    background: var(--card-bg) !important;
    border-color: var(--brand-coral) !important;
    box-shadow: 0 4px 12px var(--brand-coral-soft);
}
.logo-upload-box:hover svg[b-r80q8blyr8] {
    color: var(--brand-coral) !important;
}
/* /Components/Pages/AdminAccess/PageSetup.razor.rz.scp.css */
/* ─── Global Variables (Solid Modern Theme matching screenshots) ─── */
.management-container[b-ki0ql4sqv8] {
    --text-main: #111827;
    --text-muted: #6b7280;
    --brand-primary: #542296; /* If you need the purple accent */
    --brand-coral: #ff4757;
    --brand-coral-hover: #ff2e43;
    --brand-coral-soft: rgba(255, 71, 87, 0.1);
    --card-bg: #ffffff;
    --border-color: #e5e7eb;
    --input-border: #d1d5db;
    --bg-light: #f9fafb;
    --bg-light-hover: #f3f4f6;

    padding: 1.5rem;
    animation: fadeIn-b-ki0ql4sqv8 0.4s ease-out;
}

@keyframes fadeIn-b-ki0ql4sqv8 {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ─── Solid White Card ─── */
.solid-panel[b-ki0ql4sqv8] {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}

.panel-header[b-ki0ql4sqv8] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 1.5rem;
}

.panel-title[b-ki0ql4sqv8] {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-main);
    margin: 0;
}

.panel-subtitle[b-ki0ql4sqv8] {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0.25rem 0 0 0;
}

/* ─── Buttons ─── */
.btn-primary-solid[b-ki0ql4sqv8] {
    display: inline-flex;
    align-items: center;
    background: var(--brand-coral);
    color: #ffffff;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-primary-solid:hover[b-ki0ql4sqv8] {
    background: var(--brand-coral-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(255, 71, 87, 0.3);
    color: white;
}

.btn-ghost[b-ki0ql4sqv8] {
    background: transparent;
    color: var(--text-muted);
    font-weight: 600;
    padding: 0.6rem 1.25rem;
    border-radius: 50px;
    border: 1px solid var(--input-border);
    transition: all 0.2s;
}

.btn-ghost:hover[b-ki0ql4sqv8] {
    background: var(--bg-light);
    color: var(--text-main);
}

.btn-icon[b-ki0ql4sqv8] {
    background: transparent;
    border: 1px solid transparent;
    color: var(--text-muted);
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    padding: 0;
}

.btn-icon:hover[b-ki0ql4sqv8] {
    background: var(--bg-light-hover);
    border-color: var(--border-color);
    color: var(--text-main);
}

/* ─── Custom Table Styling ─── */
.custom-table[b-ki0ql4sqv8] {
    margin-bottom: 0;
    border-collapse: separate;
    border-spacing: 0 0.5rem;
}

.custom-table th[b-ki0ql4sqv8] {
    border-bottom: none;
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 1rem;
}

.custom-table td[b-ki0ql4sqv8] {
    background: var(--bg-light);
    border: none;
    padding: 1rem;
    font-size: 0.9rem;
    color: var(--text-main);
}

.custom-table tbody tr[b-ki0ql4sqv8] {
    transition: transform 0.2s;
}

.custom-table tbody tr:hover td[b-ki0ql4sqv8] {
    background: var(--bg-light-hover);
}

.custom-table td:first-child[b-ki0ql4sqv8] { border-radius: 12px 0 0 12px; }
.custom-table td:last-child[b-ki0ql4sqv8] { border-radius: 0 12px 12px 0; }

/* ─── Status Badges ─── */
.badge-status[b-ki0ql4sqv8] {
    padding: 0.35rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
}

.badge-status.success[b-ki0ql4sqv8] {
    background: rgba(16, 185, 129, 0.1);
    color: #059669;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.badge-status.danger[b-ki0ql4sqv8] {
    background: rgba(239, 68, 68, 0.1);
    color: #dc2626;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

/* ─── Modal & Inputs ─── */
.custom-modal-backdrop[b-ki0ql4sqv8] {
    background: rgba(15, 23, 42, 0.4) !important;
    backdrop-filter: blur(4px);
    z-index: 1050;
}

.solid-modal[b-ki0ql4sqv8] {
    background: var(--card-bg);
    border-radius: 16px;
    border: none;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.custom-input[b-ki0ql4sqv8] {
    background: var(--card-bg);
    border: 1px solid var(--input-border);
    border-radius: 8px;
    padding: 0.6rem 1rem;
    color: var(--text-main);
    transition: all 0.2s;
}

.custom-input:focus[b-ki0ql4sqv8] {
    border-color: var(--brand-coral);
    box-shadow: 0 0 0 3px var(--brand-coral-soft);
    outline: none;
}

.custom-input:disabled[b-ki0ql4sqv8] {
    background-color: var(--bg-light);
    color: var(--text-muted);
    cursor: not-allowed;
}
/* /Components/Pages/AdminAccess/ReportAccessByCompany.razor.rz.scp.css */
/* Management Container */
.management-container[b-p87fav9y4k] {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    height: 100%;
}

/* Glass/Solid Panel matching the ERP shell design */
.solid-panel[b-p87fav9y4k] {
    background: var(--glass-bg, rgba(255, 255, 255, 0.7));
    backdrop-filter: var(--blur, blur(20px));
    -webkit-backdrop-filter: var(--blur, blur(20px));
    border: 1px solid var(--glass-border, rgba(255, 255, 255, 0.2));
    border-radius: calc(var(--radius-lg, 2.5rem) - 1rem);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    padding: 2rem;
    display: flex;
    flex-direction: column;
}

/* Header */
.panel-header[b-p87fav9y4k] {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.panel-title[b-p87fav9y4k] {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text-main, #333333);
    margin: 0 0 0.25rem 0;
    letter-spacing: -0.01em;
}

.panel-subtitle[b-p87fav9y4k] {
    font-size: 0.95rem;
    color: var(--text-muted, #636e72);
    margin: 0;
}

/* Input Fields */
.custom-input[b-p87fav9y4k] {
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    padding: 0.6rem 1rem;
    font-size: 0.95rem;
    color: var(--text-main, #333333);
    width: 100%;
    transition: all 0.3s ease;
}

.custom-input:focus[b-p87fav9y4k] {
    outline: none;
    border-color: var(--panel-purple, #d5c4ef);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 0 0 3px rgba(213, 196, 239, 0.3);
}

/* Buttons */
.btn-primary-solid[b-p87fav9y4k] {
    background: var(--accent-gradient, linear-gradient(90deg, #FF5F6D 0%, #FFC371 100%));
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 0.6rem 1.25rem;
    font-size: 0.95rem;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(255, 95, 109, 0.3);
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-primary-solid:hover[b-p87fav9y4k] {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(255, 95, 109, 0.4);
}

.btn-primary-solid:active[b-p87fav9y4k] {
    transform: translateY(0);
}

.btn-ghost[b-p87fav9y4k] {
    background: rgba(0, 0, 0, 0.03);
    color: var(--text-main, #333333);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    padding: 0.4rem 0.8rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-ghost:hover[b-p87fav9y4k] {
    background: rgba(0, 0, 0, 0.08);
    border-color: rgba(0, 0, 0, 0.1);
}

/* Checkbox specific styles based on theme */
[b-p87fav9y4k] input[type="checkbox"] {
    accent-color: #FF5F6D; /* Using accent gradient start color for better matching */
}

/* Alert styles matching the theme */
.alert-success[b-p87fav9y4k] {
    background: rgba(5, 150, 105, 0.1);
    border: 1px solid rgba(5, 150, 105, 0.2);
    color: #059669;
    border-radius: 12px;
    backdrop-filter: var(--blur, blur(20px));
}

.alert-success .btn-close[b-p87fav9y4k] {
    filter: invert(41%) sepia(87%) saturate(464%) hue-rotate(113deg) brightness(91%) contrast(93%);
}

/* Entry Animation */
.card-enter[b-p87fav9y4k] {
    animation: fadeSlideUp-b-p87fav9y4k 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fadeSlideUp-b-p87fav9y4k {
    0% {
        opacity: 0;
        transform: translateY(15px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
/* /Components/Pages/Login.razor.rz.scp.css */
/* ─── Login Page isolated Styles (Using Variables) ─── */
.login-wrapper[b-ppi4qktohk] {
    --brand-primary: #542296;
    --brand-coral: #ff4757;
    --brand-coral-soft: #ff6b81;
    --brand-pink: #fbc2eb;
    --brand-blue: #a6c1ee;
    --brand-purple-light: #d4a5d8;

    --text-main: #1a1a1a;
    --text-muted: #666;
    --text-dim: #8b83a3;

    --glass-bg: rgba(255, 255, 255, 0.4);
    --glass-panel: rgba(255, 255, 255, 0.55);

    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, var(--brand-pink) 0%, var(--brand-blue) 50%, var(--brand-purple-light) 100%);
    background-size: 200% 200%;
    animation: gradientShift-b-ppi4qktohk 15s ease infinite;
    overflow: hidden;
}

@keyframes gradientShift-b-ppi4qktohk {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.glass-container[b-ppi4qktohk] {
    display: flex;
    width: 100%;
    max-width: 900px;
    height: 600px;
    background: var(--glass-bg);
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1), inset 0 0 0 1px rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px) scale(0.98);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.glass-container.card-enter[b-ppi4qktohk] {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* ─── Left Panel (Branding) ─── */
.left-panel[b-ppi4qktohk] {
    flex: 1;
    background: var(--brand-primary);
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    position: relative;
    border-radius: 30px 0 0 30px;
}

.register-text[b-ppi4qktohk] {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-weight: 500;
}

.register-link[b-ppi4qktohk] {
    color: white;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.illustration-container[b-ppi4qktohk] {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1rem;
}

.illustration-svg[b-ppi4qktohk] {
    width: 100%;
    height: 100%;
    max-height: 400px;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.1));
}

.floating-token[b-ppi4qktohk] {
    animation: floatToken-b-ppi4qktohk 4s ease-in-out infinite;
    transform-origin: center;
}

@keyframes floatToken-b-ppi4qktohk {
    0% { transform: translate(320px, 250px) translateY(0px); }
    50% { transform: translate(320px, 250px) translateY(-15px); }
    100% { transform: translate(320px, 250px) translateY(0px); }
}

/* ─── Right Panel (Form) ─── */
.right-panel[b-ppi4qktohk] {
    flex: 1.1;
    padding: 3.5rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--glass-panel);
}

.form-header[b-ppi4qktohk] {
    text-align: center;
    margin-bottom: 2rem;
}

.platform-name[b-ppi4qktohk] {
    color: #4b6cb7;
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.greeting-title[b-ppi4qktohk] {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-main);
    margin: 0 0 0.5rem;
}

.greeting-subtitle[b-ppi4qktohk] {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* ─── Inputs ─── */
.form-group[b-ppi4qktohk] {
    margin-bottom: 1.25rem;
}

.input-wrapper[b-ppi4qktohk] {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}

.input-wrapper[b-ppi4qktohk]  .form-input {
    width: 100%;
    background: linear-gradient(145deg, rgba(235, 225, 248, 0.65), rgba(215, 205, 235, 0.45));
    border: 1.5px solid rgba(255, 255, 255, 0.55);
    border-bottom-color: rgba(100, 60, 150, 0.1);
    border-radius: 50px;
    padding: 0.9rem 1.5rem 0.9rem 3.2rem;
    color: #2d2d3a;
    font-size: 0.95rem;
    font-weight: 500;
    box-shadow: 0 6px 18px rgba(84, 34, 150, 0.12),
    0 2px 6px rgba(84, 34, 150, 0.08),
    inset 0 2px 0 rgba(255, 255, 255, 0.75),
    inset 0 -2px 4px rgba(84, 34, 150, 0.06);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.input-icon[b-ppi4qktohk] {
    position: absolute;
    left: 1.1rem;
    width: 20px;
    height: 20px;
    color: #7c6f99;
    z-index: 10;
    pointer-events: none;
    transition: color 0.3s ease;
}

.input-wrapper:focus-within .input-icon[b-ppi4qktohk] {
    color: var(--brand-coral);
}

.input-wrapper[b-ppi4qktohk]  .form-input::placeholder {
    color: var(--text-dim);
    font-weight: 400;
}

.input-wrapper[b-ppi4qktohk]  .form-input:focus {
    outline: none;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.85), rgba(245, 240, 255, 0.75));
    border-color: rgba(255, 71, 87, 0.35);
    border-bottom-color: rgba(255, 71, 87, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(255, 71, 87, 0.14),
    0 4px 10px rgba(84, 34, 150, 0.06),
    inset 0 2px 0 rgba(255, 255, 255, 0.9),
    0 0 0 3px rgba(255, 71, 87, 0.1);
}

.input-wrapper[b-ppi4qktohk]  .form-input:-webkit-autofill,
.input-wrapper[b-ppi4qktohk]  .form-input:-webkit-autofill:hover,
.input-wrapper[b-ppi4qktohk]  .form-input:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0px 1000px #eadef5 inset !important;
    -webkit-text-fill-color: #2d2d3a !important;
    border-radius: 50px;
    transition: background-color 5000s ease-in-out 0s;
}

.toggle-password[b-ppi4qktohk] {
    position: absolute;
    right: 1rem;
    background: none;
    border: none;
    color: #888;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
}

.recovery-link-container[b-ppi4qktohk] {
    text-align: right;
    margin-top: 0.5rem;
    padding-right: 0.5rem;
}

.recovery-link[b-ppi4qktohk] {
    color: #555;
    font-size: 0.8rem;
    text-decoration: underline;
    font-weight: 500;
}

/* ─── Buttons ─── */
.btn-login[b-ppi4qktohk] {
    width: 100%;
    margin-top: 1rem;
    background: linear-gradient(135deg, var(--brand-coral-soft), var(--brand-coral));
    color: white;
    font-weight: 600;
    font-size: 1.05rem;
    padding: 1rem;
    border-radius: 50px;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 8px 20px rgba(255, 71, 87, 0.3);
}

.btn-login:hover:not(:disabled)[b-ppi4qktohk] {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(255, 71, 87, 0.4);
}

.btn-login:disabled[b-ppi4qktohk] {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* ─── Social Logins ─── */
.social-divider[b-ppi4qktohk] {
    position: relative;
    text-align: center;
    margin: 2rem 0 1.5rem;
}

.social-divider[b-ppi4qktohk]::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    height: 1px;
    background: rgba(0, 0, 0, 0.1);
}

.social-divider span[b-ppi4qktohk] {
    position: relative;
    background: transparent;
    padding: 0 1rem;
    color: var(--text-muted);
    font-size: 0.85rem;
    background: #f1ecf5;
    border-radius: 20px;
}

.social-login-group[b-ppi4qktohk] {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.btn-social[b-ppi4qktohk] {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.btn-social:hover[b-ppi4qktohk] {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
}

.btn-social.dark[b-ppi4qktohk] { background: #1a1a1a; color: white; }
.btn-social.light[b-ppi4qktohk] { background: rgba(255, 255, 255, 0.8); border: 1px solid rgba(255, 255, 255, 1); }

/* ─── Status & Company Select ─── */
.alert-error[b-ppi4qktohk] {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    color: #e11d48;
    padding: 0.85rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    text-align: center;
    font-size: 0.85rem;
    font-weight: 500;
}

.step-header[b-ppi4qktohk] {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.back-btn[b-ppi4qktohk] {
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s;
}

.back-btn:hover[b-ppi4qktohk] { background: white; }

.step-title[b-ppi4qktohk] {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-main);
}

.step-subtitle[b-ppi4qktohk] {
    margin: 0;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.company-list[b-ppi4qktohk] {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    max-height: 350px;
    overflow-y: auto;
    padding-right: 0.5rem;
}

.company-card[b-ppi4qktohk] {
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 16px;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    transition: all 0.2s;
    text-align: left;
}

.company-card:hover:not(:disabled)[b-ppi4qktohk] {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-1px);
}

.company-avatar[b-ppi4qktohk] {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--brand-primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    flex-shrink: 0;
}

.company-info[b-ppi4qktohk] {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.company-name[b-ppi4qktohk] {
    font-weight: 600;
    color: var(--text-main);
    font-size: 0.95rem;
}

.company-code[b-ppi4qktohk] {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.spinner[b-ppi4qktohk] {
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: #fff;
    border-radius: 50%;
    width: 1.25rem;
    height: 1.25rem;
    animation: spin-b-ppi4qktohk 1s linear infinite;
}

@keyframes spin-b-ppi4qktohk {
    to { transform: rotate(360deg); }
}

/* ─── Responsive adjustments ─── */
@media (max-width: 800px) {
    .glass-container[b-ppi4qktohk] {
        flex-direction: column;
        height: auto;
        max-width: 450px;
        margin: 2rem;
    }

    .left-panel[b-ppi4qktohk] { display: none; }

    .right-panel[b-ppi4qktohk] {
        padding: 2.5rem;
        border-radius: 30px;
    }
}

.glass-container[b-ppi4qktohk] {
    display: flex;
    width: 100%;
    max-width: 900px;
    height: 600px;
    background: var(--glass-bg);
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1), inset 0 0 0 1px rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    overflow: hidden;

    /* Use pure CSS animation instead of C# classes */
    animation: cardFadeIn-b-ppi4qktohk 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes cardFadeIn-b-ppi4qktohk {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}
/* /Components/Pages/useraccess/PagePermission.razor.rz.scp.css */
.management-container[b-dus95yohou] { padding: 1.5rem; background: #f8fafc; min-height: calc(100vh - 64px); }
.solid-panel[b-dus95yohou] { background: white; border-radius: 12px; box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1); overflow: hidden; border: 1px solid #e2e8f0; }
.panel-header[b-dus95yohou] { padding: 1.25rem 1.5rem; border-bottom: 1px solid #f1f5f9; background: #fff; }
.panel-title[b-dus95yohou] { font-size: 1.25rem; font-weight: 700; color: #1e293b; margin: 0; }
.panel-subtitle[b-dus95yohou] { font-size: 0.875rem; color: #64748b; margin-top: 2px; }
.form-section-title[b-dus95yohou] { font-size: 0.8125rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: #475569; }
.custom-input[b-dus95yohou] { border-radius: 8px; border: 1.5px solid #e2e8f0; padding: 0.625rem 0.875rem; font-size: 0.875rem; transition: all 0.2s; }
.custom-input:focus[b-dus95yohou] { border-color: #3b82f6; box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1); outline: none; }
.btn-primary-solid[b-dus95yohou] { background: #2563eb; color: white; border: none; padding: 0.625rem 1.25rem; border-radius: 8px; font-weight: 600; font-size: 0.875rem; transition: all 0.2s; }
.btn-primary-solid:hover[b-dus95yohou] { background: #1d4ed8; transform: translateY(-1px); }
.table-container[b-dus95yohou] { border-radius: 10px; overflow: hidden; border: 1px solid #e2e8f0; }
.custom-table thead[b-dus95yohou] { background: #f8fafc; }
.custom-table th[b-dus95yohou] { font-weight: 600; text-transform: uppercase; font-size: 0.75rem; letter-spacing: 0.05em; color: #64748b; padding: 1rem; border-bottom: 1px solid #e2e8f0; }
.custom-table td[b-dus95yohou] { padding: 1rem; vertical-align: middle; font-size: 0.875rem; border-bottom: 1px solid #f1f5f9; }
.form-check-input[b-dus95yohou] { width: 1.2em; height: 1.2em; margin-top: 0.15em; cursor: pointer; }
/* /Components/Pages/useraccess/RoleManagement.razor.rz.scp.css */
.management-container[b-le5wf0t7wj] { padding: 1.5rem; background: #f8fafc; min-height: calc(100vh - 64px); }
.solid-panel[b-le5wf0t7wj] { background: white; border-radius: 12px; box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1); overflow: hidden; border: 1px solid #e2e8f0; }
.panel-header[b-le5wf0t7wj] { padding: 1.25rem 1.5rem; border-bottom: 1px solid #f1f5f9; background: #fff; }
.panel-title[b-le5wf0t7wj] { font-size: 1.25rem; font-weight: 700; color: #1e293b; margin: 0; }
.panel-subtitle[b-le5wf0t7wj] { font-size: 0.875rem; color: #64748b; margin-top: 2px; }
.form-section-title[b-le5wf0t7wj] { font-size: 0.8125rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: #475569; }
.custom-input[b-le5wf0t7wj] { border-radius: 8px; border: 1.5px solid #e2e8f0; padding: 0.625rem 0.875rem; font-size: 0.875rem; transition: all 0.2s; }
.custom-input:focus[b-le5wf0t7wj] { border-color: #3b82f6; box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1); outline: none; }
.btn-primary-solid[b-le5wf0t7wj] { background: #2563eb; color: white; border: none; padding: 0.625rem 1.25rem; border-radius: 8px; font-weight: 600; font-size: 0.875rem; transition: all 0.2s; }
.btn-primary-solid:hover[b-le5wf0t7wj] { background: #1d4ed8; transform: translateY(-1px); }
.btn-outline-custom[b-le5wf0t7wj] { background: white; color: #475569; border: 1.5px solid #e2e8f0; padding: 0.625rem 1.25rem; border-radius: 8px; font-weight: 600; font-size: 0.875rem; transition: all 0.2s; }
.btn-outline-custom:hover[b-le5wf0t7wj] { background: #f1f5f9; border-color: #cbd5e1; }
.table-container[b-le5wf0t7wj] { border-radius: 10px; overflow: hidden; border: 1px solid #e2e8f0; }
.custom-table thead[b-le5wf0t7wj] { background: #f8fafc; }
.custom-table th[b-le5wf0t7wj] { font-weight: 600; text-transform: uppercase; font-size: 0.75rem; letter-spacing: 0.05em; color: #64748b; padding: 1rem; border-bottom: 1px solid #e2e8f0; }
.custom-table td[b-le5wf0t7wj] { padding: 1rem; vertical-align: middle; font-size: 0.875rem; border-bottom: 1px solid #f1f5f9; }
.btn-action[b-le5wf0t7wj] { width: 32px; height: 32px; border-radius: 6px; border: none; display: inline-flex; align-items: center; justify-content: center; transition: all 0.2s; margin-right: 4px; }
.btn-action.edit[b-le5wf0t7wj] { background: #eff6ff; color: #2563eb; }
.btn-action.edit:hover[b-le5wf0t7wj] { background: #dbeafe; }
.search-box input[b-le5wf0t7wj] { border: 1.5px solid #e2e8f0; min-width: 250px; border-radius: 8px; padding-left: 1rem; }
.search-box input:focus[b-le5wf0t7wj] { border-color: #3b82f6; outline: none; box-shadow: 0 0 0 3px rgba(59,130,246,0.1); }
/* /Components/Pages/useraccess/UserAccess.razor.rz.scp.css */
.management-container[b-gk8wm2siaa] { padding: 1.5rem; background: #f8fafc; min-height: calc(100vh - 64px); }
.solid-panel[b-gk8wm2siaa] { background: white; border-radius: 12px; box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1); overflow: hidden; border: 1px solid #e2e8f0; }
.panel-header[b-gk8wm2siaa] { padding: 1.25rem 1.5rem; border-bottom: 1px solid #f1f5f9; background: #fff; }
.panel-title[b-gk8wm2siaa] { font-size: 1.25rem; font-weight: 700; color: #1e293b; margin: 0; }
.panel-subtitle[b-gk8wm2siaa] { font-size: 0.875rem; color: #64748b; margin-top: 2px; }
.form-section-title[b-gk8wm2siaa] { font-size: 0.8125rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: #475569; }
.custom-input[b-gk8wm2siaa] { border-radius: 8px; border: 1.5px solid #e2e8f0; padding: 0.625rem 0.875rem; font-size: 0.875rem; transition: all 0.2s; }
.custom-input:focus[b-gk8wm2siaa] { border-color: #3b82f6; box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1); outline: none; }
.btn-primary-solid[b-gk8wm2siaa] { background: #2563eb; color: white; border: none; padding: 0.625rem 1.25rem; border-radius: 8px; font-weight: 600; font-size: 0.875rem; transition: all 0.2s; }
.btn-primary-solid:hover[b-gk8wm2siaa] { background: #1d4ed8; transform: translateY(-1px); }
.btn-primary-solid:disabled[b-gk8wm2siaa] { background: #94a3b8; transform: none; cursor: not-allowed; }
.table-container[b-gk8wm2siaa] { border-radius: 10px; overflow: hidden; border: 1px solid #e2e8f0; }
.custom-table thead[b-gk8wm2siaa] { background: #f8fafc; }
.custom-table th[b-gk8wm2siaa] { font-weight: 600; text-transform: uppercase; font-size: 0.75rem; letter-spacing: 0.05em; color: #64748b; padding: 1rem; border-bottom: 1px solid #e2e8f0; }
.custom-table td[b-gk8wm2siaa] { padding: 0.75rem 1rem; vertical-align: middle; font-size: 0.875rem; border-bottom: 1px solid #f1f5f9; }
.form-check-input[b-gk8wm2siaa] { width: 1.2em; height: 1.2em; margin-top: 0.15em; cursor: pointer; }
.card-enter[b-gk8wm2siaa] { animation: cardSlideIn-b-gk8wm2siaa 0.3s ease-out; }
@keyframes cardSlideIn-b-gk8wm2siaa { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
/* /Components/Pages/useraccess/UserAccessOnSubCompany.razor.rz.scp.css */
.management-container[b-2rd73zcd1k] { padding: 1.5rem; background: #f8fafc; min-height: calc(100vh - 64px); }
.solid-panel[b-2rd73zcd1k] { background: white; border-radius: 12px; box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1); overflow: hidden; border: 1px solid #e2e8f0; }
.panel-header[b-2rd73zcd1k] { padding: 1.25rem 1.5rem; border-bottom: 1px solid #f1f5f9; background: #fff; }
.panel-title[b-2rd73zcd1k] { font-size: 1.25rem; font-weight: 700; color: #1e293b; margin: 0; }
.panel-subtitle[b-2rd73zcd1k] { font-size: 0.875rem; color: #64748b; margin-top: 2px; }
.form-section-title[b-2rd73zcd1k] { font-size: 0.8125rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: #475569; }
.custom-input[b-2rd73zcd1k] { border-radius: 8px; border: 1.5px solid #e2e8f0; padding: 0.625rem 0.875rem; font-size: 0.875rem; transition: all 0.2s; }
.custom-input:focus[b-2rd73zcd1k] { border-color: #3b82f6; box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1); outline: none; }
.btn-primary-solid[b-2rd73zcd1k] { background: #2563eb; color: white; border: none; padding: 0.625rem 1.25rem; border-radius: 8px; font-weight: 600; font-size: 0.875rem; transition: all 0.2s; }
.btn-primary-solid:hover[b-2rd73zcd1k] { background: #1d4ed8; transform: translateY(-1px); }
.btn-outline-custom[b-2rd73zcd1k] { background: white; color: #475569; border: 1.5px solid #e2e8f0; padding: 0.625rem 1.25rem; border-radius: 8px; font-weight: 600; font-size: 0.875rem; transition: all 0.2s; }
.btn-outline-custom:hover[b-2rd73zcd1k] { background: #f1f5f9; border-color: #cbd5e1; }
.table-container[b-2rd73zcd1k] { border-radius: 10px; overflow: hidden; border: 1px solid #e2e8f0; }
.custom-table thead[b-2rd73zcd1k] { background: #f8fafc; }
.custom-table th[b-2rd73zcd1k] { font-weight: 600; text-transform: uppercase; font-size: 0.75rem; letter-spacing: 0.05em; color: #64748b; padding: 1rem; border-bottom: 1px solid #e2e8f0; }
.custom-table td[b-2rd73zcd1k] { padding: 1rem; vertical-align: middle; font-size: 0.875rem; border-bottom: 1px solid #f1f5f9; }
.btn-action[b-2rd73zcd1k] { width: 32px; height: 32px; border-radius: 6px; border: none; display: inline-flex; align-items: center; justify-content: center; transition: all 0.2s; }
.btn-action.edit[b-2rd73zcd1k] { background: #eff6ff; color: #2563eb; }
.btn-action.edit:hover[b-2rd73zcd1k] { background: #dbeafe; }
.search-box input[b-2rd73zcd1k] { border: 1.5px solid #e2e8f0; min-width: 250px; border-radius: 8px; padding-left: 1rem; }
.search-box input:focus[b-2rd73zcd1k] { border-color: #3b82f6; outline: none; box-shadow: 0 0 0 3px rgba(59,130,246,0.1); }
/* /Components/Pages/useraccess/UserManagement.razor.rz.scp.css */
.management-container[b-6cvbzj9c64] { padding: 1.5rem; background: #f8fafc; min-height: calc(100vh - 64px); }
.solid-panel[b-6cvbzj9c64] { background: white; border-radius: 12px; box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1); overflow: hidden; border: 1px solid #e2e8f0; }
.panel-header[b-6cvbzj9c64] { padding: 1.25rem 1.5rem; border-bottom: 1px solid #f1f5f9; background: #fff; }
.panel-title[b-6cvbzj9c64] { font-size: 1.25rem; font-weight: 700; color: #1e293b; margin: 0; }
.panel-subtitle[b-6cvbzj9c64] { font-size: 0.875rem; color: #64748b; margin-top: 2px; }
.form-section-title[b-6cvbzj9c64] { font-size: 0.8125rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: #475569; }
.custom-input[b-6cvbzj9c64] { border-radius: 8px; border: 1.5px solid #e2e8f0; padding: 0.625rem 0.875rem; font-size: 0.875rem; transition: all 0.2s; }
.custom-input:focus[b-6cvbzj9c64] { border-color: #3b82f6; box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1); outline: none; }
.btn-primary-solid[b-6cvbzj9c64] { background: #2563eb; color: white; border: none; padding: 0.625rem 1.25rem; border-radius: 8px; font-weight: 600; font-size: 0.875rem; transition: all 0.2s; }
.btn-primary-solid:hover[b-6cvbzj9c64] { background: #1d4ed8; transform: translateY(-1px); }
.btn-outline-custom[b-6cvbzj9c64] { background: white; color: #475569; border: 1.5px solid #e2e8f0; padding: 0.625rem 1.25rem; border-radius: 8px; font-weight: 600; font-size: 0.875rem; transition: all 0.2s; }
.btn-outline-custom:hover[b-6cvbzj9c64] { background: #f1f5f9; border-color: #cbd5e1; }
.table-container[b-6cvbzj9c64] { border-radius: 10px; overflow: hidden; border: 1px solid #e2e8f0; }
.custom-table thead[b-6cvbzj9c64] { background: #f8fafc; }
.custom-table th[b-6cvbzj9c64] { font-weight: 600; text-transform: uppercase; font-size: 0.75rem; letter-spacing: 0.05em; color: #64748b; padding: 1rem; border-bottom: 1px solid #e2e8f0; }
.custom-table td[b-6cvbzj9c64] { padding: 1rem; vertical-align: middle; font-size: 0.875rem; border-bottom: 1px solid #f1f5f9; }
.btn-action[b-6cvbzj9c64] { width: 32px; height: 32px; border-radius: 6px; border: none; display: inline-flex; align-items: center; justify-content: center; transition: all 0.2s; margin-right: 4px; }
.btn-action.edit[b-6cvbzj9c64] { background: #eff6ff; color: #2563eb; }
.btn-action.edit:hover[b-6cvbzj9c64] { background: #dbeafe; }
.btn-action.delete[b-6cvbzj9c64] { background: #fef2f2; color: #ef4444; }
.btn-action.delete:hover[b-6cvbzj9c64] { background: #fee2e2; }
.search-box input[b-6cvbzj9c64] { border: 1.5px solid #e2e8f0; min-width: 250px; border-radius: 8px; padding-left: 1rem; }
.search-box input:focus[b-6cvbzj9c64] { border-color: #3b82f6; outline: none; box-shadow: 0 0 0 3px rgba(59,130,246,0.1); }
.badge-status[b-6cvbzj9c64] { padding: 0.25em 0.6em; font-size: 0.75rem; font-weight: 600; border-radius: 99px; }
.badge-status.success[b-6cvbzj9c64] { background-color: #d1fae5; color: #065f46; }
.badge-status.danger[b-6cvbzj9c64] { background-color: #fee2e2; color: #991b1b; }
