@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;
    }
}
/* /Components/Pages/Admin/OrgChart.razor.rz.scp.css */
/* Organizational Chart Enhanced Styles */

.org-chart-page[b-yihq32ycig] {
    --org-node-bg: var(--card-bg);
    --org-node-border: var(--border-color);
    --org-node-shadow: var(--shadow-sm);
    --org-connector: var(--border-color);
    --org-primary: var(--primary-color);
    --org-hover-shadow: var(--shadow-md);
    --org-spacing: 1.5rem;
}

/* Page Header Actions */
.org-chart-page .page-header[b-yihq32ycig] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.org-chart-page .page-actions[b-yihq32ycig] {
    display: flex;
    gap: 0.5rem;
}

/* Filter Card */
.filter-card[b-yihq32ycig] {
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    background: var(--card-bg);
    box-shadow: var(--shadow-sm);
    margin-bottom: 1.5rem;
}

.search-container[b-yihq32ycig] {
    position: relative;
}

.search-container .search-icon[b-yihq32ycig] {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    pointer-events: none;
    font-size: 1.1rem;
}

.search-container .form-control[b-yihq32ycig] {
    padding-left: 2.75rem;
}

.search-container .search-clear[b-yihq32ycig] {
    position: absolute;
    right: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
    padding: 0.25rem 0.5rem;
    color: var(--text-muted);
}

.search-container .search-clear:hover[b-yihq32ycig] {
    color: var(--text-primary);
}

/* Organizational Chart Card */
.org-card[b-yihq32ycig] {
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    background: var(--card-bg);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

/* Header Section */
.org-header[b-yihq32ycig] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.25rem;
    border-bottom: 2px solid var(--border-color);
    flex-wrap: wrap;
}

.org-selected[b-yihq32ycig] {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.org-selected-label[b-yihq32ycig] {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    font-weight: 600;
}

.org-selected-value[b-yihq32ycig] {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Summary Pills */
.org-summary[b-yihq32ycig] {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.org-pill[b-yihq32ycig] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-md);
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    transition: all var(--transition-fast);
}

.org-pill:hover[b-yihq32ycig] {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: var(--org-primary);
}

.org-pill-icon[b-yihq32ycig] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: var(--radius-sm);
    background: linear-gradient(135deg, var(--org-primary) 0%, #8b5cf6 100%);
    color: white;
    font-size: 1.1rem;
}

.org-pill-content[b-yihq32ycig] {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.org-pill-value[b-yihq32ycig] {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1;
}

.org-pill-label[b-yihq32ycig] {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Chart Container */
.org-chart[b-yihq32ycig] {
    position: relative;
    overflow: auto;
    padding: 2rem;
    border-radius: var(--radius-md);
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    min-height: 400px;
}

.org-zoom-controls[b-yihq32ycig] {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--card-bg);
    padding: 0.5rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
    z-index: 10;
}

.zoom-level[b-yihq32ycig] {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-primary);
    min-width: 3rem;
    text-align: center;
}

.org-chart-container[b-yihq32ycig] {
    transform-origin: top left;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: fit-content;
}

/* Tree Structure */
.org-tree[b-yihq32ycig] {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: var(--org-spacing);
}

.org-tree ul.org-children[b-yihq32ycig] {
    list-style: none;
    margin: var(--org-spacing) 0 0 2rem;
    padding: 0;
    border-left: 2px solid var(--org-connector);
    display: flex;
    flex-direction: column;
    gap: var(--org-spacing);
}

.org-tree li.org-item[b-yihq32ycig] {
    margin: 0;
    padding-left: 1.5rem;
    position: relative;
}

.org-tree li.org-item[b-yihq32ycig]::before {
    content: "";
    position: absolute;
    left: -2px;
    top: 2rem;
    width: 1.5rem;
    height: 2px;
    background: var(--org-connector);
    transition: background-color var(--transition-fast);
}

.org-tree li.org-item:hover[b-yihq32ycig]::before {
    background: var(--org-primary);
}

/* Horizontal View */
.org-card.horizontal-view .org-tree[b-yihq32ycig] {
    flex-direction: row;
}

.org-card.horizontal-view .org-tree ul.org-children[b-yihq32ycig] {
    flex-direction: row;
    border-left: none;
    border-top: 2px solid var(--org-connector);
    margin: 2rem 0 0 0;
}

.org-card.horizontal-view .org-tree li.org-item[b-yihq32ycig] {
    padding-left: 0;
    padding-top: 1.5rem;
}

.org-card.horizontal-view .org-tree li.org-item[b-yihq32ycig]::before {
    left: 2rem;
    top: -2px;
    width: 2px;
    height: 1.5rem;
}

/* Node Styles */
.org-node[b-yihq32ycig] {
    display: flex;
    align-items: flex-start;
    gap: 0.875rem;
    padding: 1rem 1.25rem;
    border: 2px solid var(--org-node-border);
    border-radius: var(--radius-md);
    background: var(--org-node-bg);
    box-shadow: var(--org-node-shadow);
    transition: all var(--transition-med);
    position: relative;
    max-width: 420px;
}

.org-node[b-yihq32ycig]::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    opacity: 0;
    transition: opacity var(--transition-fast);
    pointer-events: none;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
}

.org-node:hover[b-yihq32ycig] {
    transform: translateY(-3px) scale(1.02);
    border-color: var(--org-primary);
    box-shadow: var(--org-hover-shadow), 0 0 0 4px rgba(99, 102, 241, 0.1);
}

.org-node:hover[b-yihq32ycig]::after {
    opacity: 1;
}

.org-node.matched[b-yihq32ycig] {
    border-color: var(--org-primary);
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.08) 0%, rgba(139, 92, 246, 0.08) 100%);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.15), var(--shadow-md);
}

/* Depth-based colors */
.org-node.depth-0[b-yihq32ycig] {
    border-left-width: 4px;
    border-left-color: #6366f1;
}

.org-node.depth-1[b-yihq32ycig] {
    border-left-width: 4px;
    border-left-color: #8b5cf6;
}

.org-node.depth-2[b-yihq32ycig] {
    border-left-width: 4px;
    border-left-color: #ec4899;
}

.org-node.depth-3[b-yihq32ycig] {
    border-left-width: 4px;
    border-left-color: #f59e0b;
}

.org-node.depth-4[b-yihq32ycig],
.org-node.depth-5[b-yihq32ycig] {
    border-left-width: 4px;
    border-left-color: #10b981;
}

/* Node Body */
.org-body[b-yihq32ycig] {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    min-width: 0;
}

.org-name-wrapper[b-yihq32ycig] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: space-between;
}

.org-name[b-yihq32ycig] {
    font-weight: 700;
    font-size: 1rem;
    color: var(--text-primary);
    line-height: 1.3;
}

.org-manager-badge[b-yihq32ycig] {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.5rem;
    border-radius: var(--radius-sm);
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    font-size: 0.75rem;
}

.org-title[b-yihq32ycig] {
    font-size: 0.875rem;
    color: var(--text-muted);
    font-weight: 500;
    display: flex;
    align-items: center;
}

.org-title i[b-yihq32ycig] {
    opacity: 0.7;
}

.org-meta[b-yihq32ycig] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-top: 0.25rem;
}

.org-email[b-yihq32ycig] {
    color: var(--text-muted);
    font-size: 0.8125rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.org-email i[b-yihq32ycig] {
    opacity: 0.7;
}

.org-report-count[b-yihq32ycig] {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--org-primary);
    padding: 0.25rem 0.5rem;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(99, 102, 241, 0.25);
    background: rgba(99, 102, 241, 0.08);
    white-space: nowrap;
}

.org-actions[b-yihq32ycig] {
    display: flex;
    gap: 0.25rem;
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.org-node:hover .org-actions[b-yihq32ycig] {
    opacity: 1;
}

/* Compact View */
.org-card.compact-view .org-node[b-yihq32ycig] {
    padding: 0.75rem 1rem;
    max-width: 320px;
}

.org-card.compact-view .org-name[b-yihq32ycig] {
    font-size: 0.9375rem;
}

.org-card.compact-view .org-title[b-yihq32ycig] {
    font-size: 0.8125rem;
}

.org-card.compact-view .org-meta[b-yihq32ycig] {
    display: none;
}

.org-card.compact-view .org-tree ul.org-children[b-yihq32ycig] {
    margin-left: 1.5rem;
    gap: 1rem;
}

/* Search No Results */
.search-no-results[b-yihq32ycig] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem 2rem;
    text-align: center;
    gap: 1rem;
}

.search-no-results i[b-yihq32ycig] {
    font-size: 3rem;
    color: var(--text-muted);
    opacity: 0.5;
}

.search-no-results p[b-yihq32ycig] {
    color: var(--text-secondary);
    margin: 0;
    font-size: 1rem;
}

/* Dark Theme Adjustments */
.theme-dark .org-card[b-yihq32ycig] {
    border-color: rgba(255, 255, 255, 0.08);
}

.theme-dark .org-chart[b-yihq32ycig] {
    border-color: rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.02);
}

.theme-dark .org-node[b-yihq32ycig] {
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.1);
}

.theme-dark .org-node:hover[b-yihq32ycig] {
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.5), 0 0 0 4px rgba(99, 102, 241, 0.2);
}

.theme-dark .org-tree ul.org-children[b-yihq32ycig] {
    border-left-color: rgba(255, 255, 255, 0.1);
}

.theme-dark .org-tree li.org-item[b-yihq32ycig]::before {
    background: rgba(255, 255, 255, 0.1);
}

.theme-dark .org-pill[b-yihq32ycig] {
    border-color: rgba(255, 255, 255, 0.08);
}

/* Responsive Design */
@media (max-width: 768px) {
    .org-chart-page .page-header[b-yihq32ycig] {
        flex-direction: column;
        align-items: stretch;
    }

    .org-chart-page .page-actions[b-yihq32ycig] {
        width: 100%;
        justify-content: stretch;
    }

    .org-chart-page .page-actions .btn[b-yihq32ycig] {
        flex: 1;
    }

    .org-header[b-yihq32ycig] {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }

    .org-summary[b-yihq32ycig] {
        justify-content: space-between;
    }

    .org-pill[b-yihq32ycig] {
        flex: 1;
        min-width: 0;
    }

    .org-chart[b-yihq32ycig] {
        padding: 1rem;
    }

    .org-node[b-yihq32ycig] {
        max-width: 100%;
    }

    .org-zoom-controls[b-yihq32ycig] {
        top: 0.5rem;
        right: 0.5rem;
        flex-direction: column;
    }

    .org-card.horizontal-view .org-tree[b-yihq32ycig] {
        flex-direction: column;
    }

    .org-card.horizontal-view .org-tree ul.org-children[b-yihq32ycig] {
        flex-direction: column;
        border-top: none;
        border-left: 2px solid var(--org-connector);
        margin: var(--org-spacing) 0 0 2rem;
    }

    .org-card.horizontal-view .org-tree li.org-item[b-yihq32ycig] {
        padding-left: 1.5rem;
        padding-top: 0;
    }

    .org-card.horizontal-view .org-tree li.org-item[b-yihq32ycig]::before {
        left: -2px;
        top: 2rem;
        width: 1.5rem;
        height: 2px;
    }
}

/* RTL Support */
.dir-rtl .org-tree ul.org-children[b-yihq32ycig] {
    margin-left: 0;
    margin-right: 2rem;
    border-left: none;
    border-right: 2px solid var(--org-connector);
}

.dir-rtl .org-tree li.org-item[b-yihq32ycig] {
    padding-left: 0;
    padding-right: 1.5rem;
}

.dir-rtl .org-tree li.org-item[b-yihq32ycig]::before {
    left: auto;
    right: -2px;
}

.dir-rtl .org-card.compact-view .org-tree ul.org-children[b-yihq32ycig] {
    margin-left: 0;
    margin-right: 1.5rem;
}

/* Animation */
@keyframes slideInUp-b-yihq32ycig {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.org-node[b-yihq32ycig] {
    animation: slideInUp-b-yihq32ycig 0.4s cubic-bezier(0.4, 0, 0.2, 1) backwards;
}

.org-tree li.org-item:nth-child(1) .org-node[b-yihq32ycig] { animation-delay: 0.05s; }
.org-tree li.org-item:nth-child(2) .org-node[b-yihq32ycig] { animation-delay: 0.1s; }
.org-tree li.org-item:nth-child(3) .org-node[b-yihq32ycig] { animation-delay: 0.15s; }
.org-tree li.org-item:nth-child(4) .org-node[b-yihq32ycig] { animation-delay: 0.2s; }
.org-tree li.org-item:nth-child(5) .org-node[b-yihq32ycig] { animation-delay: 0.25s; }

/* Print Styles */
@media print {
    .org-zoom-controls[b-yihq32ycig],
    .org-actions[b-yihq32ycig],
    .page-actions[b-yihq32ycig],
    .filter-card[b-yihq32ycig] {
        display: none !important;
    }

    .org-chart[b-yihq32ycig] {
        border: none;
        background: white;
        overflow: visible;
    }

    .org-node[b-yihq32ycig] {
        page-break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ddd;
    }
}
/* /Components/Pages/Projects/SprintBurndownChart.razor.rz.scp.css */
.burndown-chart-container[b-fiqst9ckz7] {
    animation: fadeIn-b-fiqst9ckz7 0.5s ease-in;
}

/* RTL Support */
.burndown-chart-container.rtl[b-fiqst9ckz7] {
    direction: rtl;
}

.burndown-chart-container.rtl .stat-card[b-fiqst9ckz7] {
    flex-direction: row-reverse;
}

.burndown-chart-container.rtl .legend-item[b-fiqst9ckz7] {
    flex-direction: row-reverse;
}

.burndown-chart-container.rtl .d-flex.gap-2[b-fiqst9ckz7] {
    flex-direction: row-reverse;
}

.burndown-chart-container.rtl .alert .d-flex[b-fiqst9ckz7] {
    flex-direction: row-reverse;
}

.burndown-chart-container.rtl .metric-box[b-fiqst9ckz7] {
    flex-direction: row-reverse;
}

@keyframes fadeIn-b-fiqst9ckz7 {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Enhanced Card Styling */
.burndown-chart-container .chart-card[b-fiqst9ckz7] {
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.burndown-chart-container .chart-card[b-fiqst9ckz7]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 50%, #10b981 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.burndown-chart-container .chart-card:hover[b-fiqst9ckz7]::before {
    opacity: 1;
}

.burndown-chart-container .chart-card:hover[b-fiqst9ckz7] {
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15) !important;
    transform: translateY(-4px);
}

/* Header Gradient with overlay pattern */
.bg-gradient-primary[b-fiqst9ckz7] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.bg-gradient-primary[b-fiqst9ckz7]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

/* Action Buttons */
.chart-action-btn[b-fiqst9ckz7] {
    transition: all 0.3s ease;
    border-radius: 8px;
    padding: 0.375rem 0.75rem;
}

.chart-action-btn:hover[b-fiqst9ckz7] {
    transform: scale(1.1) rotate(5deg);
    background: #ffffff !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Enhanced Stat Cards */
.stat-card[b-fiqst9ckz7] {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    border-radius: 12px;
    background: white;
    border: 2px solid transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.stat-card[b-fiqst9ckz7]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: var(--stat-color, #6366f1);
    transition: width 0.4s ease;
}

.stat-card:hover[b-fiqst9ckz7] {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border-color: var(--stat-color, #6366f1);
}

.stat-card:hover[b-fiqst9ckz7]::before {
    width: 100%;
    opacity: 0.05;
}

.stat-card-primary[b-fiqst9ckz7] {
    --stat-color: #6366f1;
}

.stat-card-success[b-fiqst9ckz7] {
    --stat-color: #10b981;
}

.stat-card-warning[b-fiqst9ckz7] {
    --stat-color: #f59e0b;
}

/* Stat Icon with animated background */
.stat-icon-wrapper[b-fiqst9ckz7] {
    position: relative;
    width: 64px;
    height: 64px;
    flex-shrink: 0;
}

.stat-icon[b-fiqst9ckz7] {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--stat-color, #6366f1) 0%, var(--stat-color, #6366f1) 100%);
    color: white;
    font-size: 1.75rem;
    box-shadow: 0 6px 16px rgba(99, 102, 241, 0.4);
    transition: all 0.3s ease;
}

.stat-card:hover .stat-icon[b-fiqst9ckz7] {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.5);
}

.stat-icon-bg[b-fiqst9ckz7] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--stat-color, #6366f1);
    border-radius: 14px;
    opacity: 0.15;
    animation: pulse-b-fiqst9ckz7 2s infinite;
}

@keyframes pulse-b-fiqst9ckz7 {
    0%, 100% {
        transform: scale(1);
        opacity: 0.15;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.25;
    }
}

.stat-content[b-fiqst9ckz7] {
    flex: 1;
    min-width: 0;
}

.stat-label[b-fiqst9ckz7] {
    display: block;
    color: #64748b;
    font-weight: 600;
    font-size: 0.813rem;
    margin-bottom: 0.375rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-value[b-fiqst9ckz7] {
    font-size: 2rem;
    font-weight: 800;
    color: #1e293b;
    line-height: 1.2;
    background: linear-gradient(135deg, #1e293b 0%, var(--stat-color, #6366f1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-percentage[b-fiqst9ckz7] {
    display: block;
    font-size: 0.75rem;
    color: #64748b;
    font-weight: 600;
}

.stat-progress[b-fiqst9ckz7] {
    margin-top: 0.625rem;
}

.stat-progress .progress[b-fiqst9ckz7] {
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* Chart Decorations */
.chart-illustration-container[b-fiqst9ckz7] {
    text-align: center;
    margin-bottom: 1.5rem;
}

.chart-decoration[b-fiqst9ckz7] {
    display: inline-block;
    width: 60px;
    height: 60px;
    opacity: 0.6;
}

.decoration-svg[b-fiqst9ckz7] {
    animation: float-b-fiqst9ckz7 3s ease-in-out infinite;
}

@keyframes float-b-fiqst9ckz7 {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Chart Area */
.burndown-chart[b-fiqst9ckz7] {
    position: relative;
}

.chart-area[b-fiqst9ckz7] {
    background: linear-gradient(135deg, #fafbfc 0%, #f8f9fa 100%);
    border-radius: 12px;
    padding: 1.25rem;
    box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.05);
}

.burndown-svg[b-fiqst9ckz7] {
    border-radius: 12px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.05));
}

/* SVG Animations */
.grid-line[b-fiqst9ckz7] {
    transition: stroke 0.3s ease;
}

.ideal-line[b-fiqst9ckz7] {
    stroke-dasharray: 2000;
    stroke-dashoffset: 2000;
    animation: drawLine-b-fiqst9ckz7 2.5s ease-out forwards;
}

.actual-line[b-fiqst9ckz7] {
    stroke-dasharray: 2000;
    stroke-dashoffset: 2000;
    animation: drawLine-b-fiqst9ckz7 2.5s ease-out 0.4s forwards;
}

.actual-area[b-fiqst9ckz7] {
    opacity: 0;
    animation: fadeInArea-b-fiqst9ckz7 1.2s ease-out 0.6s forwards;
}

@keyframes drawLine-b-fiqst9ckz7 {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes fadeInArea-b-fiqst9ckz7 {
    to {
        opacity: 1;
    }
}

/* Data Points with enhanced interactivity */
.data-point-group[b-fiqst9ckz7] {
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.data-point-outer[b-fiqst9ckz7] {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.data-point-inner[b-fiqst9ckz7] {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.data-point-group:hover .data-point-outer[b-fiqst9ckz7] {
    r: 8;
    stroke-width: 3;
}

.data-point-group:hover .data-point-inner[b-fiqst9ckz7] {
    r: 5;
}

.tooltip-group[b-fiqst9ckz7] {
    animation: tooltipAppear-b-fiqst9ckz7 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes tooltipAppear-b-fiqst9ckz7 {
    from {
        opacity: 0;
        transform: translateY(8px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Axis Labels with icons */
.axis-label[b-fiqst9ckz7] {
    transition: all 0.3s ease;
}

.axis-label:hover[b-fiqst9ckz7] {
    transform: translateY(-4px);
}

.axis-label i[b-fiqst9ckz7] {
    font-size: 1.25rem;
}

/* Enhanced Legend */
.legend-container[b-fiqst9ckz7] {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.legend-item[b-fiqst9ckz7] {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    transition: all 0.3s ease;
    padding: 0.5rem;
    border-radius: 8px;
}

.legend-item:hover[b-fiqst9ckz7] {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.05);
}

.legend-line[b-fiqst9ckz7] {
    width: 36px;
    height: 3.5px;
    border-radius: 2px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.legend-line-ideal[b-fiqst9ckz7] {
    background: #94a3b8;
    background-image: repeating-linear-gradient(
        90deg,
        #94a3b8,
        #94a3b8 8px,
        transparent 8px,
        transparent 12px
    );
}

.legend-line-actual[b-fiqst9ckz7] {
    background: linear-gradient(90deg, #3b82f6 0%, #2563eb 100%);
}

.legend-dot[b-fiqst9ckz7] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #3b82f6;
    border: 2.5px solid white;
    box-shadow: 0 0 0 2px #3b82f6, 0 2px 6px rgba(59, 130, 246, 0.4);
    animation: pulse-dot-b-fiqst9ckz7 2s infinite;
}

@keyframes pulse-dot-b-fiqst9ckz7 {
    0%, 100% {
        box-shadow: 0 0 0 2px #3b82f6, 0 2px 6px rgba(59, 130, 246, 0.4);
    }
    50% {
        box-shadow: 0 0 0 4px #3b82f6, 0 2px 12px rgba(59, 130, 246, 0.6);
    }
}

.legend-label[b-fiqst9ckz7] {
    font-size: 0.875rem;
    color: #475569;
    font-weight: 600;
}

/* Enhanced Alert/Insights */
.insight-alert[b-fiqst9ckz7] {
    border-radius: 12px;
    border-left: 5px solid currentColor !important;
    backdrop-filter: blur(10px);
}

.insight-alert .alert-icon[b-fiqst9ckz7] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.9);
    flex-shrink: 0;
}

.recommendations-section ul[b-fiqst9ckz7] {
    padding-left: 1.25rem;
    margin-top: 0.5rem;
}

.recommendations-section li[b-fiqst9ckz7] {
    margin-bottom: 0.375rem;
    line-height: 1.5;
}

.animate-fade-in[b-fiqst9ckz7] {
    animation: fadeIn-b-fiqst9ckz7 0.6s ease-in;
}

.alert-warning[b-fiqst9ckz7] {
    background: linear-gradient(135deg, #fef3c7 0%, #fefce8 100%);
    color: #92400e;
    border-left-color: #f59e0b !important;
}

.alert-success[b-fiqst9ckz7] {
    background: linear-gradient(135deg, #dcfce7 0%, #f0fdf4 100%);
    color: #14532d;
    border-left-color: #10b981 !important;
}

.alert-info[b-fiqst9ckz7] {
    background: linear-gradient(135deg, #dbeafe 0%, #eff6ff 100%);
    color: #1e3a8a;
    border-left-color: #3b82f6 !important;
}

/* Enhanced Metric Boxes */
.metric-box[b-fiqst9ckz7] {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: white;
    border-radius: 12px;
    border: 2px solid #e2e8f0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.metric-box[b-fiqst9ckz7]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: currentColor;
    opacity: 0;
    transition: all 0.3s ease;
}

.metric-box:hover[b-fiqst9ckz7]::before {
    opacity: 1;
    width: 100%;
    opacity: 0.05;
}

.metric-box:hover[b-fiqst9ckz7] {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    border-color: currentColor;
}

.metric-box-primary[b-fiqst9ckz7] {
    color: #6366f1;
}

.metric-box-success[b-fiqst9ckz7] {
    color: #10b981;
}

.metric-box-info[b-fiqst9ckz7] {
    color: #3b82f6;
}

.metric-icon[b-fiqst9ckz7] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 12px;
    font-size: 1.5rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.metric-box:hover .metric-icon[b-fiqst9ckz7] {
    transform: scale(1.1) rotate(-5deg);
}

.metric-details[b-fiqst9ckz7] {
    flex: 1;
}

.metric-label[b-fiqst9ckz7] {
    font-size: 0.75rem;
    color: #64748b;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.375rem;
}

.metric-value[b-fiqst9ckz7] {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1e293b;
    line-height: 1.2;
}

.metric-unit[b-fiqst9ckz7] {
    font-size: 0.875rem;
    font-weight: 600;
    color: #64748b;
    margin-left: 0.25rem;
}

/* Empty State */
.empty-state[b-fiqst9ckz7] {
    border-radius: 12px;
    background: linear-gradient(135deg, #fef3c7 0%, #fefce8 100%);
}

.empty-state i[b-fiqst9ckz7] {
    opacity: 0.6;
    animation: float-b-fiqst9ckz7 3s ease-in-out infinite;
}

/* Button Enhancements */
.spinning[b-fiqst9ckz7] {
    animation: spin-b-fiqst9ckz7 1s linear infinite;
}

@keyframes spin-b-fiqst9ckz7 {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .stat-card[b-fiqst9ckz7] {
        flex-direction: column;
        text-align: center;
        padding: 1.25rem;
    }

    .stat-icon-wrapper[b-fiqst9ckz7] {
        width: 56px;
        height: 56px;
    }

    .stat-icon[b-fiqst9ckz7] {
        width: 56px;
        height: 56px;
        font-size: 1.5rem;
    }

    .stat-value[b-fiqst9ckz7] {
        font-size: 1.75rem;
    }

    .chart-area[b-fiqst9ckz7] {
        height: 280px !important;
        padding: 1rem;
    }

    .burndown-svg[b-fiqst9ckz7] {
        height: 280px;
    }

    .legend-container[b-fiqst9ckz7] {
        flex-direction: column;
        gap: 0.75rem !important;
    }

    .legend-item[b-fiqst9ckz7] {
        width: 100%;
        justify-content: center;
    }

    .metric-box[b-fiqst9ckz7] {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
    }

    .axis-label i[b-fiqst9ckz7] {
        font-size: 1rem;
    }

    .axis-label small[b-fiqst9ckz7] {
        font-size: 0.7rem;
    }
}

@media (max-width: 576px) {
    .stat-value[b-fiqst9ckz7] {
        font-size: 1.5rem;
    }

    .metric-value[b-fiqst9ckz7] {
        font-size: 1.25rem;
    }

    .chart-action-btn[b-fiqst9ckz7] {
        padding: 0.25rem 0.5rem;
    }

    .card-header h6[b-fiqst9ckz7] {
        font-size: 0.875rem;
    }
}

/* Print Styles */
@media print {
    .chart-action-btn[b-fiqst9ckz7] {
        display: none;
    }

    .burndown-chart-container .chart-card[b-fiqst9ckz7] {
        box-shadow: none !important;
        border: 1px solid #e2e8f0 !important;
    }

    .stat-card[b-fiqst9ckz7]::before {
        width: 4px !important;
    }

    .stat-card:hover[b-fiqst9ckz7] {
        transform: none !important;
    }

    .metric-box[b-fiqst9ckz7]::before {
        display: none;
    }

    .insight-alert[b-fiqst9ckz7] {
        page-break-inside: avoid;
    }
}
/* /Components/Pages/Projects/SprintDetail.razor.rz.scp.css */
.sprint-detail-container[b-eyz0en9xfg] {
    padding: 0;
    animation: fadeInUp-b-eyz0en9xfg 0.5s ease-out;
}

@keyframes fadeInUp-b-eyz0en9xfg {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.sprint-detail-container .card[b-eyz0en9xfg] {
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    overflow: hidden;
}

.sprint-detail-container .card:hover[b-eyz0en9xfg] {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.sprint-detail-container .card-header[b-eyz0en9xfg] {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-bottom: 2px solid #e2e8f0;
    font-weight: 600;
    padding: 1rem 1.5rem;
}

.sprint-detail-container .progress[b-eyz0en9xfg] {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
}

.sprint-detail-container .progress-bar[b-eyz0en9xfg] {
    transition: width 1s ease-in-out;
}

.sprint-detail-container .table td[b-eyz0en9xfg] {
    vertical-align: middle;
    padding: 1rem 0.75rem;
}

.sprint-detail-container .table thead th[b-eyz0en9xfg] {
    background: #f8fafc;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.5px;
    color: #64748b;
    border-bottom: 2px solid #e2e8f0;
}

.sprint-detail-container .table-hover tbody tr[b-eyz0en9xfg] {
    transition: all 0.2s ease;
}

.sprint-detail-container .table-hover tbody tr:hover[b-eyz0en9xfg] {
    background-color: #f8fafc !important;
    transform: scale(1.01);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.sprint-detail-container .table-success td[b-eyz0en9xfg] {
    background: linear-gradient(to right, #d1e7dd 0%, #d9f0de 100%) !important;
    border-color: #c3e6cb !important;
}

.sprint-timeline[b-eyz0en9xfg] {
    padding: 1.5rem;
    background: #fafbfc;
    border-radius: 8px;
}

.text-purple[b-eyz0en9xfg] {
    color: #8b5cf6;
}

/* Badge Enhancements */
.badge[b-eyz0en9xfg] {
    font-weight: 500;
    padding: 0.35em 0.65em;
    border-radius: 6px;
    letter-spacing: 0.3px;
}

/* Button Enhancements */
.btn[b-eyz0en9xfg] {
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.2s ease;
    border: none;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.btn:hover[b-eyz0en9xfg] {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-primary[b-eyz0en9xfg] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.btn-success[b-eyz0en9xfg] {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.btn-info[b-eyz0en9xfg] {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
}

.btn-warning[b-eyz0en9xfg] {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.btn-outline-primary:hover[b-eyz0en9xfg] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-color: transparent;
}

.btn-outline-secondary:hover[b-eyz0en9xfg] {
    background: #64748b;
    border-color: transparent;
}

.btn-outline-success:hover[b-eyz0en9xfg] {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-color: transparent;
}

/* Metric Cards */
.col-md-3 > .card[b-eyz0en9xfg] {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
}

.col-md-3 > .card .card-body[b-eyz0en9xfg] {
    padding: 1.5rem;
}

.col-md-3 > .card:hover[b-eyz0en9xfg] {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

/* Icon Styling */
.bi[b-eyz0en9xfg] {
    transition: transform 0.2s ease;
}

.card:hover .bi[b-eyz0en9xfg] {
    transform: scale(1.1);
}

/* Health Indicators */
.text-success[b-eyz0en9xfg] {
    color: #10b981 !important;
}

.text-warning[b-eyz0en9xfg] {
    color: #f59e0b !important;
}

.text-danger[b-eyz0en9xfg] {
    color: #ef4444 !important;
}

/* Loading States */
.spinner-border[b-eyz0en9xfg] {
    border-width: 0.15em;
}

/* Empty State */
.text-center.text-muted[b-eyz0en9xfg] {
    padding: 3rem 1rem;
}

.text-center.text-muted .bi-inbox[b-eyz0en9xfg] {
    opacity: 0.3;
    margin-bottom: 1rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .sprint-detail-container h3[b-eyz0en9xfg] {
        font-size: 1.5rem;
    }

    .sprint-detail-container .card[b-eyz0en9xfg] {
        margin-bottom: 1rem;
    }

    .sprint-detail-container .table-responsive[b-eyz0en9xfg] {
        font-size: 0.875rem;
    }

    .sprint-detail-container .btn-sm[b-eyz0en9xfg] {
        font-size: 0.75rem;
        padding: 0.25rem 0.5rem;
    }

    .sprint-detail-container .badge[b-eyz0en9xfg] {
        font-size: 0.7rem;
    }
}

/* Animation for page load */
.sprint-detail-container > *[b-eyz0en9xfg] {
    animation: slideInUp-b-eyz0en9xfg 0.4s ease-out backwards;
}

.sprint-detail-container > *:nth-child(1)[b-eyz0en9xfg] { animation-delay: 0.1s; }
.sprint-detail-container > *:nth-child(2)[b-eyz0en9xfg] { animation-delay: 0.2s; }
.sprint-detail-container > *:nth-child(3)[b-eyz0en9xfg] { animation-delay: 0.3s; }
.sprint-detail-container > *:nth-child(4)[b-eyz0en9xfg] { animation-delay: 0.4s; }

@keyframes slideInUp-b-eyz0en9xfg {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* /Components/Pages/Projects/SprintReport.razor.rz.scp.css */
.sprint-report-container .card[b-wx2w4hmf9l] {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.report-header[b-wx2w4hmf9l] {
    padding: 1.5rem 0;
    border-bottom: 2px solid #e2e8f0;
}

.report-header h4[b-wx2w4hmf9l] {
    color: #1e293b;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.report-footer[b-wx2w4hmf9l] {
    font-size: 0.875rem;
    color: #64748b;
    background: #f8fafc;
    padding: 1rem;
    border-radius: 8px;
}

/* Table Enhancements */
.table[b-wx2w4hmf9l] {
    margin-bottom: 0;
}

.table thead[b-wx2w4hmf9l] {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.table thead th[b-wx2w4hmf9l] {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.5px;
    color: #475569;
    border-bottom: 2px solid #e2e8f0;
    padding: 0.875rem 0.75rem;
}

.table tbody tr[b-wx2w4hmf9l] {
    transition: background-color 0.2s ease;
}

.table tbody tr:hover[b-wx2w4hmf9l] {
    background-color: #f8fafc;
}

.table td[b-wx2w4hmf9l] {
    padding: 0.875rem 0.75rem;
    color: #334155;
}

.table-bordered[b-wx2w4hmf9l] {
    border: 1px solid #e2e8f0;
}

.table-bordered th[b-wx2w4hmf9l],
.table-bordered td[b-wx2w4hmf9l] {
    border-color: #e2e8f0;
}

/* Summary Boxes */
.bg-light[b-wx2w4hmf9l] {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%) !important;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.bg-light:hover[b-wx2w4hmf9l] {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* Progress Bars */
.progress[b-wx2w4hmf9l] {
    border-radius: 6px;
    overflow: hidden;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
}

.progress-bar[b-wx2w4hmf9l] {
    transition: width 1s ease-in-out;
}

/* Section Headers */
.fw-bold[b-wx2w4hmf9l] {
    color: #1e293b;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e2e8f0;
}

/* Card Body Padding */
.card-body[b-wx2w4hmf9l] {
    padding: 2rem;
}

/* Button Styling */
.btn-outline-primary[b-wx2w4hmf9l] {
    border-color: #6366f1;
    color: #6366f1;
    transition: all 0.2s ease;
}

.btn-outline-primary:hover[b-wx2w4hmf9l] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-color: transparent;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

/* Text Colors */
.text-muted[b-wx2w4hmf9l] {
    color: #64748b !important;
}

.text-end[b-wx2w4hmf9l] {
    text-align: right;
}

/* Spacing */
.mb-3[b-wx2w4hmf9l] {
    margin-bottom: 1rem;
}

.mb-4[b-wx2w4hmf9l] {
    margin-bottom: 1.5rem;
}

/* Print styles */
@media print {
    body *[b-wx2w4hmf9l] {
        visibility: hidden;
    }

    #sprint-report-content[b-wx2w4hmf9l],
    #sprint-report-content *[b-wx2w4hmf9l] {
        visibility: visible;
    }

    #sprint-report-content[b-wx2w4hmf9l] {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        padding: 0;
    }

    .card[b-wx2w4hmf9l] {
        box-shadow: none !important;
        border: none !important;
        page-break-inside: avoid;
    }

    .card-header[b-wx2w4hmf9l] {
        display: none;
    }

    .btn[b-wx2w4hmf9l] {
        display: none !important;
    }

    .table[b-wx2w4hmf9l] {
        page-break-inside: auto;
        border-collapse: collapse;
    }

    .table tr[b-wx2w4hmf9l] {
        page-break-inside: avoid;
        page-break-after: auto;
    }

    .table thead[b-wx2w4hmf9l] {
        display: table-header-group;
        background: #f8fafc !important;
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }

    .table thead th[b-wx2w4hmf9l] {
        background: #f8fafc !important;
        border: 1px solid #e2e8f0 !important;
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }

    h6[b-wx2w4hmf9l],
    .fw-bold[b-wx2w4hmf9l] {
        page-break-after: avoid;
        color: #1e293b !important;
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }

    .report-header[b-wx2w4hmf9l] {
        margin-bottom: 1.5rem;
        padding-bottom: 1rem;
        border-bottom: 2px solid #000;
    }

    .report-footer[b-wx2w4hmf9l] {
        margin-top: 2rem;
        padding-top: 1rem;
        border-top: 2px solid #000;
    }

    .bg-light[b-wx2w4hmf9l] {
        background: #f8fafc !important;
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }

    .progress[b-wx2w4hmf9l] {
        border: 1px solid #e2e8f0;
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }

    .progress-bar[b-wx2w4hmf9l] {
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }

    .mb-4[b-wx2w4hmf9l] {
        margin-bottom: 1.5rem !important;
        page-break-inside: avoid;
    }

    /* Ensure colors print correctly */
    *[b-wx2w4hmf9l] {
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }

    /* Page breaks */
    .row[b-wx2w4hmf9l] {
        page-break-inside: avoid;
    }

    /* Font adjustments for print */
    body[b-wx2w4hmf9l] {
        font-size: 10pt;
        line-height: 1.4;
    }

    h4[b-wx2w4hmf9l] {
        font-size: 16pt;
    }

    h6[b-wx2w4hmf9l] {
        font-size: 12pt;
    }

    table[b-wx2w4hmf9l] {
        font-size: 9pt;
    }

    .small[b-wx2w4hmf9l],
    small[b-wx2w4hmf9l] {
        font-size: 8pt;
    }
}

/* Screen-only enhancements */
@media screen {
    .sprint-report-container[b-wx2w4hmf9l] {
        animation: fadeIn-b-wx2w4hmf9l 0.5s ease-in;
    }

    @keyframes fadeIn-b-wx2w4hmf9l {
        from {
            opacity: 0;
            transform: translateY(20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .table tbody tr[b-wx2w4hmf9l] {
        animation: slideIn-b-wx2w4hmf9l 0.3s ease-out backwards;
    }

    .table tbody tr:nth-child(1)[b-wx2w4hmf9l] { animation-delay: 0.05s; }
    .table tbody tr:nth-child(2)[b-wx2w4hmf9l] { animation-delay: 0.1s; }
    .table tbody tr:nth-child(3)[b-wx2w4hmf9l] { animation-delay: 0.15s; }
    .table tbody tr:nth-child(4)[b-wx2w4hmf9l] { animation-delay: 0.2s; }
    .table tbody tr:nth-child(5)[b-wx2w4hmf9l] { animation-delay: 0.25s; }

    @keyframes slideIn-b-wx2w4hmf9l {
        from {
            opacity: 0;
            transform: translateX(-20px);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }
}
/* /Components/Pages/Sprints/SprintManagement.razor.rz.scp.css */
/* Sprint Management Page Styles */

.sprint-management-page[b-m3b25o1o9l] {
    animation: fadeIn-b-m3b25o1o9l 0.5s ease-in;
}

@keyframes fadeIn-b-m3b25o1o9l {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Enhanced Page Header */
.page-header-enhanced h2[b-m3b25o1o9l] {
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.page-header-enhanced h2 i[b-m3b25o1o9l] {
    animation: pulse-b-m3b25o1o9l 2s infinite;
}

@keyframes pulse-b-m3b25o1o9l {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

/* Dashboard Stat Cards */
.stat-card[b-m3b25o1o9l] {
    background: #ffffff;
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-card[b-m3b25o1o9l]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--stat-color-start), var(--stat-color-end));
}

.stat-card:hover[b-m3b25o1o9l] {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.stat-card-primary[b-m3b25o1o9l] {
    --stat-color-start: #667eea;
    --stat-color-end: #764ba2;
}

.stat-card-success[b-m3b25o1o9l] {
    --stat-color-start: #10b981;
    --stat-color-end: #059669;
}

.stat-card-info[b-m3b25o1o9l] {
    --stat-color-start: #3b82f6;
    --stat-color-end: #2563eb;
}

.stat-card-warning[b-m3b25o1o9l] {
    --stat-color-start: #f59e0b;
    --stat-color-end: #d97706;
}

.stat-icon[b-m3b25o1o9l] {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    background: linear-gradient(135deg, var(--stat-color-start), var(--stat-color-end));
    color: white;
    flex-shrink: 0;
}

.stat-content[b-m3b25o1o9l] {
    flex: 1;
}

.stat-label[b-m3b25o1o9l] {
    font-size: 0.875rem;
    color: #64748b;
    margin-bottom: 0.25rem;
    font-weight: 500;
}

.stat-value[b-m3b25o1o9l] {
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
    line-height: 1;
}

.stat-change[b-m3b25o1o9l] {
    font-size: 0.813rem;
    color: #64748b;
    margin-top: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.stat-change.positive[b-m3b25o1o9l] {
    color: #10b981;
}

.stat-change.negative[b-m3b25o1o9l] {
    color: #ef4444;
}

/* Enhanced Filter Card */
.filter-card[b-m3b25o1o9l] {
    border-radius: 12px;
    border: 2px solid #f1f5f9;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.filter-card .card-body[b-m3b25o1o9l] {
    padding: 1.5rem;
}

.filter-card .form-label[b-m3b25o1o9l] {
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.filter-card .form-select[b-m3b25o1o9l],
.filter-card .form-control[b-m3b25o1o9l] {
    border-radius: 8px;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
}

.filter-card .form-select:focus[b-m3b25o1o9l],
.filter-card .form-control:focus[b-m3b25o1o9l] {
    border-color: #667eea;
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
}

/* Sprint Card Styles */
.sprint-card[b-m3b25o1o9l] {
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    overflow: visible;
    height: 100%;
}

.sprint-card:hover[b-m3b25o1o9l] {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.sprint-card.active-sprint[b-m3b25o1o9l] {
    border-left: 4px solid #10b981 !important;
    background: linear-gradient(135deg, #ffffff 0%, #f0fdf4 100%);
}

.sprint-card .card-header[b-m3b25o1o9l] {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-bottom: 2px solid #f1f3f5;
    padding: 1.25rem;
}

.sprint-card .card-body[b-m3b25o1o9l] {
    padding: 1.25rem;
}

.sprint-title[b-m3b25o1o9l] {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.status-indicator[b-m3b25o1o9l] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    font-size: 1.25rem;
}

.status-indicator.status-planning[b-m3b25o1o9l] {
    background: #dbeafe;
}

.status-indicator.status-active[b-m3b25o1o9l] {
    background: #d1fae5;
    animation: pulse-green-b-m3b25o1o9l 2s infinite;
}

.status-indicator.status-completed[b-m3b25o1o9l] {
    background: #f1f5f9;
}

.status-indicator.status-cancelled[b-m3b25o1o9l] {
    background: #fee2e2;
}

@keyframes pulse-green-b-m3b25o1o9l {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    }
    50% {
        box-shadow: 0 0 0 8px rgba(16, 185, 129, 0);
    }
}

.sprint-goal[b-m3b25o1o9l] {
    background: #f8fafc;
    padding: 1rem;
    border-radius: 8px;
    border-left: 3px solid #667eea;
}

.sprint-goal p[b-m3b25o1o9l] {
    font-size: 0.938rem;
    line-height: 1.5;
    color: #475569;
}

/* Stat Box Styles */
.stat-box[b-m3b25o1o9l] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: #f8f9fa;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.stat-box:hover[b-m3b25o1o9l] {
    background: #e9ecef;
    transform: translateX(4px);
}

.stat-box i[b-m3b25o1o9l] {
    font-size: 1.5rem;
}

.stat-box small[b-m3b25o1o9l] {
    font-size: 0.75rem;
    line-height: 1;
}

.stat-box strong[b-m3b25o1o9l] {
    font-size: 1.1rem;
    line-height: 1;
}

/* Progress Container */
.progress-container[b-m3b25o1o9l] {
    margin-top: 1rem;
}

.progress[b-m3b25o1o9l] {
    background-color: #e9ecef;
    border-radius: 10px;
    overflow: hidden;
    height: 8px;
}

.progress-bar[b-m3b25o1o9l] {
    transition: width 0.6s ease;
}

/* Date Range */
.date-range[b-m3b25o1o9l] {
    display: flex;
    align-items: center;
    padding: 0.5rem;
    background: #f8f9fa;
    border-radius: 6px;
}

/* Badge Enhancements */
.badge[b-m3b25o1o9l] {
    padding: 0.35rem 0.75rem;
    font-weight: 500;
    font-size: 0.813rem;
    border-radius: 6px;
}

.badge.bg-light[b-m3b25o1o9l] {
    border: 1px solid #dee2e6;
}

/* Sprint List View */
.sprint-list-item[b-m3b25o1o9l] {
    animation: slideInLeft-b-m3b25o1o9l 0.3s ease-out;
}

@keyframes slideInLeft-b-m3b25o1o9l {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.sprint-list-item .card[b-m3b25o1o9l] {
    border-radius: 12px;
    transition: all 0.3s ease;
}

.sprint-list-item .card:hover[b-m3b25o1o9l] {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateX(4px);
}

.status-indicator-large[b-m3b25o1o9l] {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.stat-inline[b-m3b25o1o9l] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.938rem;
}

/* Timeline View */
.sprint-timeline-view[b-m3b25o1o9l] {
    position: relative;
    padding-left: 2rem;
}

.sprint-timeline-view[b-m3b25o1o9l]::before {
    content: '';
    position: absolute;
    left: 24px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, #667eea 0%, #764ba2 100%);
}

.timeline-item[b-m3b25o1o9l] {
    position: relative;
    padding-left: 3rem;
    padding-bottom: 2rem;
}

.timeline-marker[b-m3b25o1o9l] {
    position: absolute;
    left: 0;
    top: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    background: white;
    border: 3px solid;
    z-index: 1;
}

.timeline-marker.status-planning[b-m3b25o1o9l] {
    border-color: #3b82f6;
    background: #dbeafe;
}

.timeline-marker.status-active[b-m3b25o1o9l] {
    border-color: #10b981;
    background: #d1fae5;
    animation: pulse-timeline-b-m3b25o1o9l 2s infinite;
}

.timeline-marker.status-completed[b-m3b25o1o9l] {
    border-color: #6b7280;
    background: #f3f4f6;
}

.timeline-marker.status-cancelled[b-m3b25o1o9l] {
    border-color: #ef4444;
    background: #fee2e2;
}

@keyframes pulse-timeline-b-m3b25o1o9l {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    }
    50% {
        box-shadow: 0 0 0 12px rgba(16, 185, 129, 0);
    }
}

.timeline-content[b-m3b25o1o9l] {
    margin-top: 0.5rem;
}

.timeline-content .card[b-m3b25o1o9l] {
    border-radius: 12px;
    border-left: 3px solid var(--timeline-color, #e5e7eb);
}

/* Dropdown Menu Enhancement */
.dropdown-menu[b-m3b25o1o9l] {
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border: none;
    min-width: 180px;
}

.dropdown-item[b-m3b25o1o9l] {
    padding: 0.5rem 1rem;
    transition: all 0.2s ease;
}

.dropdown-item:hover[b-m3b25o1o9l] {
    background: #f8f9fa;
    padding-left: 1.25rem;
}

.dropdown-item i[b-m3b25o1o9l] {
    width: 20px;
}

/* Empty State */
.empty-state-container[b-m3b25o1o9l] {
    text-align: center;
    padding: 3rem 1.5rem;
}

/* View Mode Toggle */
.btn-group .btn[b-m3b25o1o9l] {
    transition: all 0.2s ease;
}

.btn-group .btn:hover[b-m3b25o1o9l] {
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .stat-card[b-m3b25o1o9l] {
        padding: 1rem;
    }

    .stat-icon[b-m3b25o1o9l] {
        width: 48px;
        height: 48px;
        font-size: 1.5rem;
    }

    .stat-value[b-m3b25o1o9l] {
        font-size: 1.5rem;
    }

    .sprint-card[b-m3b25o1o9l] {
        margin-bottom: 1rem;
    }

    .stat-box[b-m3b25o1o9l] {
        padding: 0.5rem;
        font-size: 0.875rem;
    }

    .sprint-title[b-m3b25o1o9l] {
        font-size: 1rem;
    }

    .page-header-enhanced h2[b-m3b25o1o9l] {
        font-size: 1.5rem;
    }

    .timeline-item[b-m3b25o1o9l] {
        padding-left: 2rem;
    }

    .timeline-marker[b-m3b25o1o9l] {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .stat-card[b-m3b25o1o9l] {
        flex-direction: column;
        text-align: center;
    }

    .page-header-enhanced .d-flex[b-m3b25o1o9l] {
        flex-direction: column;
        align-items: flex-start !important;
    }

    .page-header-enhanced .gap-2[b-m3b25o1o9l] {
        width: 100%;
    }

    .page-header-enhanced .btn[b-m3b25o1o9l] {
        width: 100%;
    }
}

/* Dark Mode Support */
.theme-dark .sprint-card[b-m3b25o1o9l] {
    background: #1e293b;
    border-color: #334155 !important;
}

.theme-dark .sprint-card.active-sprint[b-m3b25o1o9l] {
    background: linear-gradient(135deg, #1e293b 0%, #064e3b 100%);
}

.theme-dark .sprint-card .card-header[b-m3b25o1o9l] {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    border-bottom-color: #475569;
}

.theme-dark .stat-card[b-m3b25o1o9l] {
    background: #1e293b;
    color: #e2e8f0;
}

.theme-dark .stat-value[b-m3b25o1o9l],
.theme-dark .sprint-title[b-m3b25o1o9l] {
    color: #e2e8f0;
}

.theme-dark .filter-card[b-m3b25o1o9l] {
    background: #1e293b;
    border-color: #334155;
}

.theme-dark .stat-box[b-m3b25o1o9l],
.theme-dark .date-range[b-m3b25o1o9l],
.theme-dark .sprint-goal[b-m3b25o1o9l] {
    background: #334155;
}

/* Print Styles */
@media print {
    .sprint-card[b-m3b25o1o9l] {
        page-break-inside: avoid;
        box-shadow: none;
        border: 1px solid #dee2e6 !important;
    }

    .dropdown[b-m3b25o1o9l],
    .btn[b-m3b25o1o9l],
    .page-header-enhanced .btn[b-m3b25o1o9l] {
        display: none;
    }

    .sprint-card:hover[b-m3b25o1o9l] {
        transform: none;
    }

    .filter-card[b-m3b25o1o9l] {
        display: none;
    }
}

/* Animation for new cards */
.sprint-grid-item[b-m3b25o1o9l] {
    animation: fadeInUp-b-m3b25o1o9l 0.3s ease-out;
}

@keyframes fadeInUp-b-m3b25o1o9l {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Loading Skeleton */
.skeleton[b-m3b25o1o9l] {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading-b-m3b25o1o9l 1.5s ease-in-out infinite;
}

@keyframes loading-b-m3b25o1o9l {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}
/* /Components/Pages/Tasks/TaskDetail.razor.rz.scp.css */
/* Task Detail Page Enhanced Styling */

.task-detail-page[b-ffl5akwv7d] {
    animation: fadeIn-b-ffl5akwv7d 0.5s ease-in;
}

@keyframes fadeIn-b-ffl5akwv7d {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Details Card Enhancement */
.task-details-card[b-ffl5akwv7d] {
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.task-details-card:hover[b-ffl5akwv7d] {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}

.task-details-card .card-header[b-ffl5akwv7d] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 1.25rem;
    border-bottom: none;
    position: relative;
    overflow: hidden;
}

.task-details-card .card-header[b-ffl5akwv7d]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.task-details-card .card-header h6[b-ffl5akwv7d] {
    position: relative;
    z-index: 1;
}

/* Detail Items */
.detail-item[b-ffl5akwv7d] {
    position: relative;
    padding-left: 0.25rem;
    transition: all 0.3s ease;
}

.detail-item:hover[b-ffl5akwv7d] {
    transform: translateX(4px);
}

.detail-label[b-ffl5akwv7d] {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.detail-label i[b-ffl5akwv7d] {
    font-size: 0.875rem;
    margin-right: 0.375rem;
}

.detail-value[b-ffl5akwv7d] {
    font-size: 0.938rem;
    color: #1e293b;
    font-weight: 500;
}

.detail-unassigned[b-ffl5akwv7d] {
    color: #94a3b8;
    font-style: italic;
}

.detail-meta-text[b-ffl5akwv7d] {
    color: #64748b;
    display: block;
    line-height: 1.6;
}

/* Form Controls Enhancement */
.task-details-card .form-control[b-ffl5akwv7d],
.task-details-card .form-select[b-ffl5akwv7d] {
    border-radius: 8px;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
    font-size: 0.875rem;
    padding: 0.5rem 0.75rem;
}

.task-details-card .form-control:focus[b-ffl5akwv7d],
.task-details-card .form-select:focus[b-ffl5akwv7d] {
    border-color: #667eea;
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
}

.task-details-card .form-control:hover[b-ffl5akwv7d],
.task-details-card .form-select:hover[b-ffl5akwv7d] {
    border-color: #cbd5e1;
}

/* Input with Icons */
.input-with-icon[b-ffl5akwv7d] {
    position: relative;
}

.input-with-icon i[b-ffl5akwv7d] {
    position: absolute;
    left: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
}

.input-with-icon input[b-ffl5akwv7d] {
    padding-left: 2.5rem;
}

/* Buttons Enhancement */
.task-details-card .btn[b-ffl5akwv7d] {
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.task-details-card .btn[b-ffl5akwv7d]::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.task-details-card .btn:hover[b-ffl5akwv7d]::before {
    width: 300px;
    height: 300px;
}

.task-details-card .btn-success[b-ffl5akwv7d] {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border: none;
}

.task-details-card .btn-success:hover[b-ffl5akwv7d] {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
}

.task-details-card .btn-outline-primary[b-ffl5akwv7d] {
    border-color: #667eea;
    color: #667eea;
}

.task-details-card .btn-outline-primary:hover[b-ffl5akwv7d] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-color: transparent;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.task-details-card .btn-outline-secondary:hover[b-ffl5akwv7d] {
    transform: translateY(-2px);
}

/* Badge Enhancements */
.badge[b-ffl5akwv7d] {
    padding: 0.375rem 0.75rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.813rem;
}

.bg-gradient-warning[b-ffl5akwv7d] {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.bg-gradient-info[b-ffl5akwv7d] {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
}

.badge.bg-danger[b-ffl5akwv7d] {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
}

/* Status-specific styling */
.status-todo[b-ffl5akwv7d] {
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    color: #64748b;
}

.status-inprogress[b-ffl5akwv7d] {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    color: #2563eb;
}

.status-inreview[b-ffl5akwv7d] {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    color: #d97706;
}

.status-done[b-ffl5akwv7d] {
    background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%);
    color: #059669;
}

/* Priority Badges */
.priority-highest[b-ffl5akwv7d] {
    color: #ef4444;
    font-weight: 700;
}

.priority-high[b-ffl5akwv7d] {
    color: #f59e0b;
    font-weight: 700;
}

.priority-medium[b-ffl5akwv7d] {
    color: #3b82f6;
    font-weight: 600;
}

.priority-low[b-ffl5akwv7d] {
    color: #10b981;
    font-weight: 600;
}

.priority-lowest[b-ffl5akwv7d] {
    color: #64748b;
    font-weight: 500;
}

/* Overdue indicator */
.text-danger.fw-bold[b-ffl5akwv7d] {
    animation: pulse-b-ffl5akwv7d 2s infinite;
}

@keyframes pulse-b-ffl5akwv7d {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

/* Link Styling */
.detail-value a[b-ffl5akwv7d] {
    color: #667eea;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.detail-value a:hover[b-ffl5akwv7d] {
    color: #764ba2;
    transform: translateX(4px);
}

.detail-value a i[b-ffl5akwv7d] {
    font-size: 0.75rem;
}

/* Divider */
.task-details-card hr[b-ffl5akwv7d] {
    border-top: 2px solid #f1f5f9;
    margin: 1.5rem 0;
}

/* Avatar Enhancement */
.avatar[b-ffl5akwv7d] {
    transition: all 0.3s ease;
}

.avatar:hover[b-ffl5akwv7d] {
    transform: scale(1.1);
}

/* Sprint Link */
.text-purple[b-ffl5akwv7d] {
    color: #764ba2 !important;
}

/* Number Inputs */
input[type="number"][b-ffl5akwv7d]::-webkit-inner-spin-button,
input[type="number"][b-ffl5akwv7d]::-webkit-outer-spin-button {
    opacity: 1;
}

/* Date Input */
input[type="date"][b-ffl5akwv7d] {
    position: relative;
}

input[type="date"][b-ffl5akwv7d]::-webkit-calendar-picker-indicator {
    filter: invert(47%) sepia(13%) saturate(1207%) hue-rotate(192deg) brightness(95%) contrast(87%);
    cursor: pointer;
}

/* Responsive */
@media (max-width: 768px) {
    .task-details-card[b-ffl5akwv7d] {
        margin-bottom: 1rem;
    }

    .detail-item[b-ffl5akwv7d] {
        padding-left: 0;
    }

    .detail-item:hover[b-ffl5akwv7d] {
        transform: none;
    }
}

/* Loading State */
.detail-item.loading[b-ffl5akwv7d] {
    opacity: 0.6;
    pointer-events: none;
}

.detail-item.loading[b-ffl5akwv7d]::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent);
    animation: shimmer-b-ffl5akwv7d 1.5s infinite;
}

@keyframes shimmer-b-ffl5akwv7d {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

/* Success Animation */
@keyframes successPulse-b-ffl5akwv7d {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(16, 185, 129, 0);
    }
}

.btn-success.saving[b-ffl5akwv7d] {
    animation: successPulse-b-ffl5akwv7d 1s;
}

/* Validation States */
.form-control.is-invalid[b-ffl5akwv7d],
.form-select.is-invalid[b-ffl5akwv7d] {
    border-color: #ef4444;
}

.form-control.is-valid[b-ffl5akwv7d],
.form-select.is-valid[b-ffl5akwv7d] {
    border-color: #10b981;
}

.invalid-feedback[b-ffl5akwv7d],
.valid-feedback[b-ffl5akwv7d] {
    font-size: 0.75rem;
    margin-top: 0.25rem;
}

/* Tooltip Enhancement */
.detail-label [data-bs-toggle="tooltip"][b-ffl5akwv7d] {
    cursor: help;
    border-bottom: 1px dashed #94a3b8;
}

/* Grid Layout for Edit Mode */
.detail-edit-grid[b-ffl5akwv7d] {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 992px) {
    .detail-edit-grid[b-ffl5akwv7d] {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Sticky Save Button */
.save-button-sticky[b-ffl5akwv7d] {
    position: sticky;
    bottom: 1rem;
    z-index: 10;
    background: white;
    padding: 1rem 0;
    margin: 0 -1.5rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.08);
}

/* Icon Colors */
.bi.text-primary[b-ffl5akwv7d] { color: #667eea !important; }
.bi.text-info[b-ffl5akwv7d] { color: #3b82f6 !important; }
.bi.text-warning[b-ffl5akwv7d] { color: #f59e0b !important; }
.bi.text-success[b-ffl5akwv7d] { color: #10b981 !important; }
.bi.text-danger[b-ffl5akwv7d] { color: #ef4444 !important; }
.bi.text-secondary[b-ffl5akwv7d] { color: #64748b !important; }
.bi.text-purple[b-ffl5akwv7d] { color: #764ba2 !important; }

/* Sprint Status Badges */
.badge.bg-success[b-ffl5akwv7d] {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%) !important;
    animation: pulse-success-b-ffl5akwv7d 2s infinite;
}

.badge.bg-info[b-ffl5akwv7d] {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%) !important;
}

.badge.bg-secondary[b-ffl5akwv7d] {
    background: linear-gradient(135deg, #6b7280 0%, #4b5563 100%) !important;
}

.badge.bg-danger[b-ffl5akwv7d] {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%) !important;
}

@keyframes pulse-success-b-ffl5akwv7d {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    }
    50% {
        box-shadow: 0 0 0 4px rgba(16, 185, 129, 0);
    }
}

/* Sprint Link Enhancement */
.detail-value a[b-ffl5akwv7d] {
    transition: all 0.3s ease;
}

.detail-value a:hover[b-ffl5akwv7d] {
    transform: translateX(2px);
}

/* Print Styles */
@media print {
    .task-details-card[b-ffl5akwv7d] {
        box-shadow: none !important;
        border: 1px solid #e2e8f0 !important;
    }

    .task-details-card .card-header[b-ffl5akwv7d] {
        background: #f8f9fa !important;
        color: #1e293b !important;
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }

    .btn[b-ffl5akwv7d] {
        display: none;
    }

    .detail-item:hover[b-ffl5akwv7d] {
        transform: none;
    }
}
