@import '_content/Microsoft.AspNetCore.Components.QuickGrid/Microsoft.AspNetCore.Components.QuickGrid.boiwgh0w5b.bundle.scp.css';

/* /Components/Layout/MainLayout.razor.rz.scp.css */
/* ==========================================================================
   MODERN ENTERPRISE LAYOUT - RESET & VARIABLES
   ========================================================================== */
.app-layout[b-ifed3n5n4b] {
    /* --- Colors: Slate (Dark Sidebar) --- */
    --color-sidebar-bg: #0f172a;       /* Slate 900 */
    --color-sidebar-text: #94a3b8;     /* Slate 400 */
    --color-sidebar-active-bg: #1e293b; /* Slate 800 */
    --color-sidebar-active-text: #ffffff;
    --color-sidebar-hover-bg: rgba(255, 255, 255, 0.05);

    /* --- Colors: Brand (Indigo) --- */
    --color-primary: #6366f1;
    --color-primary-hover: #4f46e5;

    /* --- Colors: App Backgrounds --- */
    --color-bg-body: #f3f4f6;          /* Gray 100 */
    --color-bg-card: #ffffff;

    /* --- Colors: Text & Borders --- */
    --color-text-main: #111827;        /* Gray 900 */
    --color-text-muted: #6b7280;       /* Gray 500 */
    --color-border: #e5e7eb;           /* Gray 200 */

    /* --- Dimensions --- */
    --sidebar-width: 260px;
    --sidebar-width-collapsed: 64px;
    --header-height: 64px;

    --focus-ring: 0 0 0 3px rgba(99, 102, 241, 0.35);
}

/* --- Dark Theme Overrides --- */
.theme-dark[b-ifed3n5n4b] {
    --color-bg-body: #0f172a;
    --color-bg-card: #1e293b;
    --color-text-main: #f3f4f6;
    --color-text-muted: #94a3b8;
    --color-border: #334155;
}

/* ==========================================================================
   LAYOUT GRID
   ========================================================================== */
.app-layout[b-ifed3n5n4b] {
    display: flex;
    min-height: 100vh;
    background-color: var(--color-bg-body);
    color: var(--color-text-main);
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

.dir-rtl[b-ifed3n5n4b] {
    direction: rtl;
}

.dir-ltr[b-ifed3n5n4b] {
    direction: ltr;
}

/* ==========================================================================
   SIDEBAR
   ========================================================================== */
.sidebar[b-ifed3n5n4b] {
    width: var(--sidebar-width);
    background: linear-gradient(180deg, var(--color-sidebar-bg) 0%, #020617 100%); /* Added gradient */
    color: var(--color-sidebar-text);
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    z-index: 50;
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1); /* Smoother bezier */
    border-right: 1px solid rgba(255,255,255,0.03);
    box-shadow: 4px 0 24px rgba(0, 0, 0, 0.2); /* Added shadow depth */
}

.dir-rtl .sidebar[b-ifed3n5n4b] {
    left: auto;
    right: 0;
    border-right: none;
    border-left: 1px solid rgba(255,255,255,0.03);
    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.2);
}

.sidebar.collapsed[b-ifed3n5n4b] {
    width: var(--sidebar-width-collapsed);
}

/* Header (Logo area) */
.sidebar-header[b-ifed3n5n4b] {
    height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1.25rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    background: rgba(255, 255, 255, 0.01); /* Subtle highlight */
    backdrop-filter: blur(4px);
}

.logo[b-ifed3n5n4b] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: white;
    transition: opacity 0.2s;
}

.logo-icon[b-ifed3n5n4b] {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-hover) 100%); /* Gradient icon */
    border-radius: 8px; /* Slightly softer */
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3); /* Glow */
}

.logo-text[b-ifed3n5n4b] {
    font-weight: 800;
    font-size: 1.2rem;
    letter-spacing: -0.03em;
    white-space: nowrap;
    background: linear-gradient(to right, #ffffff, #94a3b8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.toggle-btn[b-ifed3n5n4b] {
    background: transparent;
    border: none;
    color: var(--color-sidebar-text);
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    display: flex;
    align-items: center;
}

.toggle-btn:hover[b-ifed3n5n4b] {
    color: white;
    background: var(--color-sidebar-hover-bg);
}

/* Navigation */
.sidebar-nav[b-ifed3n5n4b] {
    flex: 1;
    overflow-y: auto;
    padding: 1rem 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.1) transparent;
}

.sidebar-nav[b-ifed3n5n4b]::-webkit-scrollbar {
    width: 4px;
}

.sidebar-nav[b-ifed3n5n4b]::-webkit-scrollbar-track {
    background: transparent;
}

.sidebar-nav[b-ifed3n5n4b]::-webkit-scrollbar-thumb {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.nav-group[b-ifed3n5n4b] {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.nav-group + .nav-group[b-ifed3n5n4b] {
    padding-top: 0.75rem;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.nav-label[b-ifed3n5n4b] {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(148, 163, 184, 0.6);
    padding: 0 0.75rem;
    margin-bottom: 0.35rem;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.2s;
}

.nav-group:hover .nav-label[b-ifed3n5n4b] {
    color: rgba(148, 163, 184, 0.9);
}

.nav-label[b-ifed3n5n4b]::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, rgba(148, 163, 184, 0.1), transparent);
}

.nav-link[b-ifed3n5n4b] {
    MARGIN-TOP: 10PX;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.625rem 0.75rem;
    border-radius: 10px;
    color: var(--color-sidebar-text);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    position: relative;
    border: 1px solid transparent;
    min-height: 44px;
}

.nav-icon[b-ifed3n5n4b] {
    text-align: center;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: inline-block;
    place-items: center;
    flex-shrink: 0;
    /*  background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);*/
    transition: transform 0.2s var(--transition-bounce), background 0.2s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-icon i[b-ifed3n5n4b] {
    font-size: 1.05rem;
    line-height: 1;
    color: rgba(226, 232, 240, 0.8);
    transition: color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link span[b-ifed3n5n4b] {
    font-weight: 600;
    letter-spacing: -0.01em;
}

.nav-link:hover[b-ifed3n5n4b] {
    background-color: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.05);
    color: #f1f5f9;
    transform: translateX(2px);
}

.dir-rtl .nav-link:hover[b-ifed3n5n4b] {
    transform: translateX(-2px);
}

.nav-link.active[b-ifed3n5n4b] {
    background: linear-gradient(90deg, rgba(99, 102, 241, 0.15) 0%, rgba(99, 102, 241, 0.05) 100%);
    border: 1px solid rgba(99, 102, 241, 0.3);
    color: #ffffff;
}

.nav-link.active[b-ifed3n5n4b]::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 2px;
    height: 20px;
    background: var(--color-primary);
    border-radius: 0 3px 3px 0;
    box-shadow: 0 0 10px rgba(99, 102, 241, 0.35);
}

.dir-rtl .nav-link.active[b-ifed3n5n4b]::before {
    left: auto;
    right: 0;
    border-radius: 3px 0 0 3px;
}

.nav-link:hover .nav-icon[b-ifed3n5n4b] {
    transform: scale(1.04);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.12);
}

.nav-link:hover .nav-icon i[b-ifed3n5n4b] {
    color: #ffffff;
}

.nav-link.active .nav-icon[b-ifed3n5n4b] {
    background: rgba(99, 102, 241, 0.14);
    border-color: rgba(99, 102, 241, 0.28);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.08);
}

.nav-link.active .nav-icon i[b-ifed3n5n4b] {
    color: #c7d2fe;
}

/* Sidebar Footer */
.sidebar-footer[b-ifed3n5n4b] {
    padding: 1rem;
    border-top: 1px solid rgba(255,255,255,0.05);
}

/* ==========================================================================
   MAIN WRAPPER
   ========================================================================== */
.main-wrapper[b-ifed3n5n4b] {
    flex: 1;
    margin-left: var(--sidebar-width);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    transition: margin-left 0.3s ease;
}

.sidebar.collapsed + .main-wrapper[b-ifed3n5n4b] {
    margin-left: var(--sidebar-width-collapsed);
}

.dir-rtl .main-wrapper[b-ifed3n5n4b] {
    margin-left: 0;
    margin-right: var(--sidebar-width);
}

.dir-rtl .sidebar.collapsed + .main-wrapper[b-ifed3n5n4b] {
    margin-right: var(--sidebar-width-collapsed);
}

/* ==========================================================================
   TOPBAR & GLASS EFFECT
   ========================================================================== */
.topbar[b-ifed3n5n4b] {
    height: var(--header-height);
    background-color: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
    position: sticky;
    top: 0;
    z-index: 40;
    transition: all 0.3s ease;
}

.theme-dark .topbar[b-ifed3n5n4b] {
    background-color: rgba(30, 41, 59, 0.9); /* Slate 800 */
}

.glass-effect[b-ifed3n5n4b] {
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.topbar-left[b-ifed3n5n4b], .topbar-right[b-ifed3n5n4b] {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

/* Breadcrumbs */
.breadcrumb[b-ifed3n5n4b] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
}

.breadcrumb-item[b-ifed3n5n4b] {
    color: var(--color-text-muted);
}

.breadcrumb-item.active[b-ifed3n5n4b] {
    color: var(--color-text-main);
    font-weight: 500;
}

.separator[b-ifed3n5n4b] {
    font-size: 0.75rem;
    color: #cbd5e1; /* Slate 300 */
}

/* Search */
.search-container[b-ifed3n5n4b] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--color-bg-body);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    width: 320px;
    border: 1px solid transparent;
    transition: all 0.2s ease;
}

.search-container i[b-ifed3n5n4b] {
    color: var(--color-text-muted);
}

.search-container:focus-within[b-ifed3n5n4b] {
    border-color: var(--color-primary);
    background: var(--color-bg-card);
    box-shadow: 0 0 0 2px rgba(99, 102, 241, 0.1);
}

.shortcut-hint[b-ifed3n5n4b] {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    border: 1px solid var(--color-border);
    border-radius: 4px;
    padding: 0.1rem 0.4rem;
    background-color: var(--color-bg-card);
}

/* Mobile Toggle */
.mobile-toggle[b-ifed3n5n4b] {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--color-text-muted);
}

/* Search Input */
.search-container input[b-ifed3n5n4b] {
    border: none;
    background: transparent;
    outline: none;
    width: 100%;
    color: var(--color-text-main);
    font-size: 0.875rem;
}

/* Actions */
.action-group[b-ifed3n5n4b] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding-right: 1.5rem;
    border-right: 1px solid var(--color-border);
}

.language-switcher[b-ifed3n5n4b] {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.25rem 0.5rem;
    border-radius: 999px;
    border: 1px solid var(--color-border);
    background: var(--color-bg-card);
}

.theme-dark .language-switcher[b-ifed3n5n4b] {
    background: rgba(15, 23, 42, 0.35);
}

.language-switcher i[b-ifed3n5n4b] {
    color: var(--color-text-muted);
}

.language-switcher .form-select[b-ifed3n5n4b] {
    border: none;
    background: transparent;
    padding-right: 1.75rem;
    padding-left: 0.25rem;
    min-width: 7rem;
    color: var(--color-text-main);
    box-shadow: none;
}

.dir-rtl .language-switcher .form-select[b-ifed3n5n4b] {
    padding-right: 0.25rem;
    padding-left: 1.75rem;
}

.menu-wrapper[b-ifed3n5n4b] {
    position: relative;
    display: flex;
    align-items: center;
}

.icon-btn[b-ifed3n5n4b] {
    background: transparent;
    border: none;
    color: var(--color-text-muted);
    font-size: 1.1rem;
    padding: 0.5rem;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.toggle-btn:focus-visible[b-ifed3n5n4b],
.mobile-toggle:focus-visible[b-ifed3n5n4b],
.nav-link:focus-visible[b-ifed3n5n4b],
.search-container:focus-within[b-ifed3n5n4b],
.icon-btn:focus-visible[b-ifed3n5n4b],
.user-profile:focus-visible[b-ifed3n5n4b],
.dropdown-item:focus-visible[b-ifed3n5n4b] {
    outline: none;
    box-shadow: var(--focus-ring);
}

.toggle-btn:focus-visible[b-ifed3n5n4b],
.mobile-toggle:focus-visible[b-ifed3n5n4b],
.icon-btn:focus-visible[b-ifed3n5n4b],
.user-profile:focus-visible[b-ifed3n5n4b],
.dropdown-item:focus-visible[b-ifed3n5n4b],
.nav-link:focus-visible[b-ifed3n5n4b] {
    border-radius: 10px;
}

.icon-btn:hover[b-ifed3n5n4b] {
    background-color: var(--color-bg-body);
    color: var(--color-primary);
    transform: translateY(-1px);
}

.icon-btn i[b-ifed3n5n4b] {
    transition: transform 0.3s ease;
}

.icon-btn:hover i.bi-sun[b-ifed3n5n4b],
.icon-btn:hover i.bi-moon[b-ifed3n5n4b] {
    transform: rotate(20deg);
}

.notification-btn:hover i[b-ifed3n5n4b] {
    animation: bell-ring-b-ifed3n5n4b 1s ease-in-out;
}

.badge-dot[b-ifed3n5n4b] {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 9px;
    height: 9px;
    border-radius: 999px;
    background: #ef4444;
    box-shadow: 0 0 0 2px var(--color-bg-card);
}

.badge-count[b-ifed3n5n4b] {
    position: absolute;
    top: 6px;
    right: 6px;
    min-width: 18px;
    height: 18px;
    padding: 0 6px;
    border-radius: 999px;
    background: #ef4444;
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 2px var(--color-bg-card);
    line-height: 1;
}

.theme-dark .badge-dot[b-ifed3n5n4b] {
    box-shadow: 0 0 0 2px rgba(30, 41, 59, 0.95);
}

.theme-dark .badge-count[b-ifed3n5n4b] {
    box-shadow: 0 0 0 2px rgba(30, 41, 59, 0.95);
}

@keyframes bell-ring-b-ifed3n5n4b {
    0%, 100% { transform: rotate(0); }
    20%, 60% { transform: rotate(15deg); }
    40%, 80% { transform: rotate(-15deg); }
}

/* User Profile */
.user-profile[b-ifed3n5n4b] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    position: relative;
    padding: 0.25rem 0.5rem;
    border-radius: 8px;
    transition: background-color 0.2s;
    border: 1px solid transparent;
    background: transparent;
    color: inherit;
}

.user-profile:hover[b-ifed3n5n4b] {
    background-color: var(--color-bg-body);
}

.dropdown-menu[b-ifed3n5n4b] {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    margin-top: 0;
    width: 220px;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    padding: 0.5rem 0;
    display: block;
    z-index: 100;
    animation: dropdown-slide-b-ifed3n5n4b 0.2s ease-out;
    transform-origin: top right;
}

.notifications-menu[b-ifed3n5n4b] {
    width: 360px;
    max-width: calc(100vw - 24px);
    max-height: 420px;
    overflow: hidden;
}

.notifications-header[b-ifed3n5n4b] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.5rem 0.75rem 0;
}

.notifications-title[b-ifed3n5n4b] {
    font-weight: 700;
    color: var(--color-text-main);
}

.notifications-loading[b-ifed3n5n4b] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem;
}

.notifications-empty[b-ifed3n5n4b] {
    padding: 0.75rem;
}

.notifications-list[b-ifed3n5n4b] {
    display: flex;
    flex-direction: column;
    max-height: 360px;
    overflow: auto;
}

.notification-item[b-ifed3n5n4b] {
    width: 100%;
    text-align: left;
    border: none;
    background: transparent;
    padding: 0.75rem;
    cursor: pointer;
    border-top: 1px solid var(--color-border);
    transition: background 0.15s ease;
}

.notification-item:hover[b-ifed3n5n4b] {
    background: var(--color-bg-body);
}

.notification-item.unread .notification-item-title[b-ifed3n5n4b] {
    font-weight: 700;
}

.notification-item.read .notification-item-title[b-ifed3n5n4b] {
    font-weight: 600;
    color: var(--color-text-muted);
}

.notification-item-top[b-ifed3n5n4b] {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 0.25rem;
}

.notification-item-title[b-ifed3n5n4b] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-text-main);
}

.notification-item-time[b-ifed3n5n4b] {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    white-space: nowrap;
}

.notification-item-message[b-ifed3n5n4b] {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

@keyframes dropdown-slide-b-ifed3n5n4b {
    from {
        opacity: 0;
        transform: scale(0.95) translateY(-10px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.dropdown-header[b-ifed3n5n4b] {
    padding: 0.75rem 1rem;
    display: flex;
    flex-direction: column;
}

.dropdown-header span[b-ifed3n5n4b] {
    font-size: 0.75rem;
    color: var(--color-text-muted);
}

.dropdown-item[b-ifed3n5n4b] {
    display: block;
    padding: 0.5rem 1rem;
    color: var(--color-text-main);
    text-decoration: none;
    font-size: 0.875rem;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
}

.dropdown-item:hover[b-ifed3n5n4b] {
    background-color: var(--color-bg-body);
}

.text-danger[b-ifed3n5n4b] { color: #ef4444; }

hr[b-ifed3n5n4b] {
    margin: 0.5rem 0;
    border: 0;
    border-top: 1px solid var(--color-border);
}

/* ==========================================================================
   CONTENT AREA & PAGE CONTAINER
   ========================================================================== */
.content-area[b-ifed3n5n4b] {
    padding: clamp(1rem, 2vw, 2rem);
    flex: 1;
    overflow-x: hidden;
}

.page-container[b-ifed3n5n4b] {
    max-width: 1600px;
    margin: 0 auto;
    width: 100%;
}

/* ==========================================================================
   MOBILE RESPONSIVENESS
   ========================================================================== */
.sidebar.collapsed .toggle-btn i[b-ifed3n5n4b] {
    transform: rotate(180deg);
}

/* Center icons when collapsed */
.sidebar.collapsed .logo[b-ifed3n5n4b],
.sidebar.collapsed .nav-link[b-ifed3n5n4b] {
    justify-content: center;
    padding-left: 0;
    padding-right: 0;
}

.sidebar.collapsed .nav-label[b-ifed3n5n4b],
.sidebar.collapsed .nav-label[b-ifed3n5n4b] {
    display: none;
}

@media (max-width: 991px) {
    .sidebar[b-ifed3n5n4b] {
        transform: translateX(-100%);
        width: var(--sidebar-width); /* Always full width on mobile when open */
    }
    
    .sidebar.mobile-open[b-ifed3n5n4b] {
        transform: translateX(0);
    }

    .dir-rtl .sidebar[b-ifed3n5n4b] {
        transform: translateX(100%);
    }

    .dir-rtl .sidebar.mobile-open[b-ifed3n5n4b] {
        transform: translateX(0);
    }

    .main-wrapper[b-ifed3n5n4b] {
        margin-left: 0 !important;
    }

    .mobile-toggle[b-ifed3n5n4b] {
        display: block;
    }

    .search-container[b-ifed3n5n4b] {
        display: none; /* Hide search on small screens or make it an icon */
    }

    .topbar[b-ifed3n5n4b] {
        padding: 0 1rem;
    }
    
    .content-area[b-ifed3n5n4b] {
        padding: 1rem;
    }

    .backdrop[b-ifed3n5n4b] {
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.5);
        z-index: 45;
    }
}

@media (prefers-reduced-motion: reduce) {
    *[b-ifed3n5n4b] {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important;
    }
}
/* /Components/Layout/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-hdosg0cj18] {
    appearance: none;
    cursor: pointer;
    width: 3.5rem;
    height: 2.5rem;
    color: white;
    position: absolute;
    top: 0.5rem;
    right: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") no-repeat center/1.75rem rgba(255, 255, 255, 0.1);
}

.navbar-toggler:checked[b-hdosg0cj18] {
    background-color: rgba(255, 255, 255, 0.5);
}

.top-row[b-hdosg0cj18] {
    min-height: 3.5rem;
    background-color: rgba(0,0,0,0.4);
}

.navbar-brand[b-hdosg0cj18] {
    font-size: 1.1rem;
}

.bi[b-hdosg0cj18] {
    display: inline-block;
    position: relative;
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.75rem;
    top: -1px;
    background-size: cover;
}

.bi-house-door-fill-nav-menu[b-hdosg0cj18] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-house-door-fill' viewBox='0 0 16 16'%3E%3Cpath d='M6.5 14.5v-3.505c0-.245.25-.495.5-.495h2c.25 0 .5.25.5.5v3.5a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5v-7a.5.5 0 0 0-.146-.354L13 5.793V2.5a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5v1.293L8.354 1.146a.5.5 0 0 0-.708 0l-6 6A.5.5 0 0 0 1.5 7.5v7a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5Z'/%3E%3C/svg%3E");
}

.bi-plus-square-fill-nav-menu[b-hdosg0cj18] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-plus-square-fill' viewBox='0 0 16 16'%3E%3Cpath d='M2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2H2zm6.5 4.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3a.5.5 0 0 1 1 0z'/%3E%3C/svg%3E");
}

.bi-list-nested-nav-menu[b-hdosg0cj18] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-list-nested' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M4.5 11.5A.5.5 0 0 1 5 11h10a.5.5 0 0 1 0 1H5a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 3 7h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 1 3h10a.5.5 0 0 1 0 1H1a.5.5 0 0 1-.5-.5z'/%3E%3C/svg%3E");
}

.nav-item[b-hdosg0cj18] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type[b-hdosg0cj18] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-hdosg0cj18] {
        padding-bottom: 1rem;
    }

    .nav-item[b-hdosg0cj18]  .nav-link {
        color: #d7d7d7;
        background: none;
        border: none;
        border-radius: 4px;
        height: 3rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
        width: 100%;
    }

.nav-item[b-hdosg0cj18]  a.active {
    background-color: rgba(255,255,255,0.37);
    color: white;
}

.nav-item[b-hdosg0cj18]  .nav-link:hover {
    background-color: rgba(255,255,255,0.1);
    color: white;
}

.nav-scrollable[b-hdosg0cj18] {
    display: none;
}

.navbar-toggler:checked ~ .nav-scrollable[b-hdosg0cj18] {
    display: block;
}

@media (min-width: 641px) {
    .navbar-toggler[b-hdosg0cj18] {
        display: none;
    }

    .nav-scrollable[b-hdosg0cj18] {
        /* Never collapse the sidebar for wide screens */
        display: block;

        /* Allow sidebar to scroll for tall menus */
        height: calc(100vh - 3.5rem);
        overflow-y: auto;
    }
}
/* /Components/Layout/NullLayout.razor.rz.scp.css */
.null-layout[b-ji7h2eorr9] {
    min-height: 100vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.null-layout.rtl[b-ji7h2eorr9] {
    direction: rtl;
    text-align: right;
}

#blazor-error-ui[b-ji7h2eorr9] {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 5px rgba(0, 0, 0, 0.35);
    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-ji7h2eorr9] {
    cursor: pointer;
    position: absolute;
    right: 0.75rem;
    top: 0.5rem;
}
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-e3js0ca7cv],
.components-reconnect-repeated-attempt-visible[b-e3js0ca7cv],
.components-reconnect-failed-visible[b-e3js0ca7cv],
.components-pause-visible[b-e3js0ca7cv],
.components-resume-failed-visible[b-e3js0ca7cv],
.components-rejoining-animation[b-e3js0ca7cv] {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-e3js0ca7cv],
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-e3js0ca7cv],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-e3js0ca7cv],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-e3js0ca7cv],
#components-reconnect-modal.components-reconnect-retrying[b-e3js0ca7cv],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-e3js0ca7cv],
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-e3js0ca7cv],
#components-reconnect-modal.components-reconnect-failed[b-e3js0ca7cv],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-e3js0ca7cv] {
    display: block;
}


#components-reconnect-modal[b-e3js0ca7cv] {
    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-e3js0ca7cv 0.5s both;
    &[open]

{
    animation: components-reconnect-modal-slideUp-b-e3js0ca7cv 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-e3js0ca7cv 0.5s ease-in-out 0.3s;
    animation-fill-mode: both;
}

}

#components-reconnect-modal[b-e3js0ca7cv]::backdrop {
    background-color: rgba(0, 0, 0, 0.4);
    animation: components-reconnect-modal-fadeInOpacity-b-e3js0ca7cv 0.5s ease-in-out;
    opacity: 1;
}

@keyframes components-reconnect-modal-slideUp-b-e3js0ca7cv {
    0% {
        transform: translateY(30px) scale(0.95);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes components-reconnect-modal-fadeInOpacity-b-e3js0ca7cv {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes components-reconnect-modal-fadeOutOpacity-b-e3js0ca7cv {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.components-reconnect-container[b-e3js0ca7cv] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#components-reconnect-modal p[b-e3js0ca7cv] {
    margin: 0;
    text-align: center;
}

#components-reconnect-modal button[b-e3js0ca7cv] {
    border: 0;
    background-color: #6b9ed2;
    color: white;
    padding: 4px 24px;
    border-radius: 4px;
}

    #components-reconnect-modal button:hover[b-e3js0ca7cv] {
        background-color: #3b6ea2;
    }

    #components-reconnect-modal button:active[b-e3js0ca7cv] {
        background-color: #6b9ed2;
    }

.components-rejoining-animation[b-e3js0ca7cv] {
    position: relative;
    width: 80px;
    height: 80px;
}

    .components-rejoining-animation div[b-e3js0ca7cv] {
        position: absolute;
        border: 3px solid #0087ff;
        opacity: 1;
        border-radius: 50%;
        animation: components-rejoining-animation-b-e3js0ca7cv 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .components-rejoining-animation div:nth-child(2)[b-e3js0ca7cv] {
            animation-delay: -0.5s;
        }

@keyframes components-rejoining-animation-b-e3js0ca7cv {
    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;
    }
}
