/* /Layout/MainLayout.razor.rz.scp.css */
.page[b-yjntgvon4p] {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Mobile header styles */
.mobile-header[b-yjntgvon4p] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 56px;
    background: #ffffff;
    border-bottom: 1px solid #e1e5e9;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
    z-index: 1001;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.mobile-brand[b-yjntgvon4p] {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: #323130;
}

.mobile-logo[b-yjntgvon4p] {
    height: 36px;
    width: auto;
}

.mobile-user[b-yjntgvon4p] {
    margin-left: auto;
}

/* Hamburger menu button */
.hamburger-menu[b-yjntgvon4p] {
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
}

.hamburger-menu span[b-yjntgvon4p] {
    display: block;
    width: 22px;
    height: 2px;
    background: #323130;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.page.sidebar-open .hamburger-menu span:nth-child(1)[b-yjntgvon4p] {
    transform: rotate(45deg) translate(5px, 5px);
}

.page.sidebar-open .hamburger-menu span:nth-child(2)[b-yjntgvon4p] {
    opacity: 0;
}

.page.sidebar-open .hamburger-menu span:nth-child(3)[b-yjntgvon4p] {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Sidebar overlay for mobile */
.sidebar-overlay[b-yjntgvon4p] {
    position: fixed;
    top: 56px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    animation: fadeIn-b-yjntgvon4p 0.3s ease;
}

@keyframes fadeIn-b-yjntgvon4p {
    from { opacity: 0; }
    to { opacity: 1; }
}

main[b-yjntgvon4p] {
    flex: 1;
    background-color: #f8f9fa;
}

/* Azure Portal-style sidebar */
.sidebar[b-yjntgvon4p] {
    background-color: #ffffff;
    border-right: 1px solid #e1e5e9;
    box-shadow: 2px 0 4px rgba(0,0,0,0.1);
    z-index: 1000;
    transition: transform 0.3s ease;
}

/* Azure Portal-style header */
.top-row[b-yjntgvon4p] {
    background-color: #ffffff;
    border-bottom: 1px solid #e1e5e9;
    justify-content: space-between;
    height: 48px;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    z-index: 999;
}

    .top-row[b-yjntgvon4p]  a, .top-row[b-yjntgvon4p]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

    .top-row[b-yjntgvon4p]  a:hover, .top-row[b-yjntgvon4p]  .btn-link:hover {
        text-decoration: underline;
    }

    .top-row[b-yjntgvon4p]  a:first-child {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 767.98px) {
    .page[b-yjntgvon4p] {
        padding-top: 56px;
    }

    main[b-yjntgvon4p] {
        width: 100% !important;
        padding-top: 0;
    }

    .sidebar[b-yjntgvon4p] {
        position: fixed;
        top: 56px;
        left: 0;
        bottom: 0;
        width: 280px;
        transform: translateX(-100%);
        z-index: 1000;
        overflow-y: auto;
    }

    .sidebar.sidebar-mobile-open[b-yjntgvon4p] {
        transform: translateX(0);
    }

    .top-row[b-yjntgvon4p] {
        display: none !important;
    }

    .content[b-yjntgvon4p] {
        padding: 16px !important;
    }

    .page-header[b-yjntgvon4p] {
        padding: 16px !important;
        margin-bottom: 16px;
    }
}

@media (min-width: 768px) {
    .mobile-header[b-yjntgvon4p] {
        display: none !important;
    }

    .sidebar-overlay[b-yjntgvon4p] {
        display: none !important;
    }

    .page[b-yjntgvon4p] {
        flex-direction: row;
        padding-top: 0;
    }

    .sidebar[b-yjntgvon4p] {
        width: 280px !important;
        height: 100vh;
        position: sticky;
        top: 0;
        overflow-y: auto;
        transform: translateX(0) !important;
        transition: width 0.3s ease;
    }

    .sidebar.collapsed[b-yjntgvon4p] {
        width: 64px !important;
    }

    .top-row[b-yjntgvon4p] {
        position: sticky;
        top: 0;
        z-index: 999;
        display: flex !important;
    }

    .top-row.auth[b-yjntgvon4p]  a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    .top-row[b-yjntgvon4p], article[b-yjntgvon4p] {
        padding-left: 24px !important;
        padding-right: 24px !important;
    }

    main[b-yjntgvon4p] {
        width: calc(100% - 280px) !important;
        transition: width 0.3s ease;
    }

    /* Adjust main content when sidebar is collapsed */
    .sidebar.collapsed ~ main[b-yjntgvon4p] {
        width: calc(100% - 64px) !important;
    }
}

/* Page header styling */
.page-header[b-yjntgvon4p] {
    background-color: #ffffff;
    border-bottom: 1px solid #e1e5e9;
    margin-bottom: 24px;
}

.page-title[b-yjntgvon4p] {
    font-size: 24px;
    font-weight: 600;
    color: #323130;
    display: flex;
    align-items: center;
}

.page-title i[b-yjntgvon4p] {
    color: #e55100;
}

.page-description[b-yjntgvon4p] {
    font-size: 14px;
    color: #605e5c;
    margin-top: 4px;
}

.page-actions[b-yjntgvon4p] {
    display: flex;
    gap: 8px;
    align-items: center;
}

/* Breadcrumb styling */
.breadcrumb[b-yjntgvon4p] {
    font-size: 13px;
}

.breadcrumb-item[b-yjntgvon4p] {
    color: #605e5c;
}

.breadcrumb-item a[b-yjntgvon4p] {
    color: #e55100;
    text-decoration: none;
}

.breadcrumb-item a:hover[b-yjntgvon4p] {
    color: #bf360c;
    text-decoration: underline;
}

.breadcrumb-item.active[b-yjntgvon4p] {
    color: #323130;
    font-weight: 500;
}

.breadcrumb-item + .breadcrumb-item[b-yjntgvon4p]::before {
    content: "/";
    color: #c8c6c4;
    margin: 0 8px;
}

/* Content area */
.content[b-yjntgvon4p] {
    padding-top: 0 !important;
}

/* Full-screen auth overlay - covers everything including sidebar */
.auth-overlay[b-yjntgvon4p] {
    position: fixed;
    inset: 0;
    z-index: 1100;
    background-color: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
}

#blazor-error-ui[b-yjntgvon4p] {
    color-scheme: light only;
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss[b-yjntgvon4p] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* /Layout/NavMenu.razor.rz.scp.css */
/* Azure Portal-Style Modern Navigation */

/* Mobile toggle button */
.navbar-toggler[b-hvguytwzwh] {
    appearance: none;
    cursor: pointer;
    width: 44px;
    height: 44px;
    color: #605e5c;
    position: absolute;
    top: 6px;
    right: 16px;
    border: none;
    background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2896, 94, 92, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") no-repeat center/18px;
    border-radius: 6px;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar-toggler:hover[b-hvguytwzwh] {
    background-color: #f3f2f1;
    transform: scale(1.05);
}

.navbar-toggler:active[b-hvguytwzwh] {
    background-color: #edebe9;
    transform: scale(0.98);
}

/* Header area with logo */
.top-row[b-hvguytwzwh] {
    min-height: 72px;
    background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
    border-bottom: 1px solid #e1e5e9;
    padding: 8px 20px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.navbar-brand[b-hvguytwzwh] {
    font-size: 16px;
    font-weight: 600;
    color: #323130;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 12px 0;
    line-height: 1.4;
    flex: 1;
}

.nav-collapse-toggle[b-hvguytwzwh] {
    background: none;
    border: none;
    color: #605e5c;
    font-size: 14px;
    width: 32px;
    height: 32px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.nav-collapse-toggle:hover[b-hvguytwzwh] {
    background-color: #f3f2f1;
    color: #e55100;
    transform: scale(1.1);
}

.nav-collapse-toggle:active[b-hvguytwzwh] {
    background-color: #edebe9;
    transform: scale(0.95);
}

.navbar-brand:hover[b-hvguytwzwh] {
    color: #bf360c;
    text-decoration: none;
    transform: translateX(2px);
}

.brand-logo[b-hvguytwzwh] {
    height: 48px !important;
    width: auto;
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.navbar-brand i[b-hvguytwzwh] {
    font-size: 18px;
    color: #e55100;
    transition: transform 0.2s ease;
    flex-shrink: 0;
    line-height: 1;
}

.brand-text[b-hvguytwzwh] {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-scrollable.collapsed .brand-text[b-hvguytwzwh] {
    opacity: 0;
    width: 0;
    overflow: hidden;
    margin-left: 0;
}

.navbar-brand:hover .brand-logo[b-hvguytwzwh] {
    transform: scale(1.05);
}

.navbar-brand:hover i[b-hvguytwzwh] {
    transform: rotate(5deg);
}

/* Navigation scrollable area */
.nav-scrollable[b-hvguytwzwh] {
    background-color: #ffffff;
    padding: 20px 0;
    height: calc(100vh - 56px);
    overflow-y: auto;
    overflow-x: hidden;
    position: relative;
    width: 280px;
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-scrollable.collapsed[b-hvguytwzwh] {
    width: 64px;
}

.nav-scrollable.collapsed .nav-section-header[b-hvguytwzwh] {
    opacity: 0;
    height: 0;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.nav-scrollable.collapsed .nav-text[b-hvguytwzwh] {
    opacity: 0;
    width: 0;
    margin: 0;
    overflow: hidden;
}

.nav-scrollable[b-hvguytwzwh]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #e55100, #ff8a50, #ffcc80);
    opacity: 0.8;
}

/* Navigation structure */
.nav[b-hvguytwzwh] {
    padding: 0;
    margin: 0;
}

/* Section styling */
.nav-section[b-hvguytwzwh] {
    margin: 32px 0;
    padding: 0 16px;
    position: relative;
}

.nav-section:first-child[b-hvguytwzwh] {
    margin-top: 8px;
}

.nav-section:last-child[b-hvguytwzwh] {
    margin-bottom: 20px;
}

.nav-section-header[b-hvguytwzwh] {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #605e5c;
    margin-bottom: 12px;
    padding: 0 16px;
    position: relative;
    display: flex;
    align-items: center;
    line-height: 14px;
}

.nav-section-header[b-hvguytwzwh]::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, #e1e5e9, transparent);
    margin-left: 12px;
}

/* Main dashboard link styling */
.main-nav-link[b-hvguytwzwh] {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    margin: 0 16px 8px 16px;
    border-radius: 4px;
    text-decoration: none;
    color: #323130;
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: linear-gradient(135deg, #fff8f0 0%, #ffffff 100%);
    border: 1px solid #ffe0b2;
    box-shadow: 0 2px 4px rgba(229, 81, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.main-nav-link[b-hvguytwzwh]::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s ease;
}

.main-nav-link:hover[b-hvguytwzwh]::before {
    left: 100%;
}

.main-nav-link:hover[b-hvguytwzwh] {
    background: linear-gradient(135deg, #fff3e0 0%, #fff8f0 100%);
    border-color: #ff8a50;
    color: #e55100;
    text-decoration: none;
    transform: translateY(-2px) translateX(4px);
    box-shadow: 0 8px 24px rgba(229, 81, 0, 0.15);
}

.main-nav-link.active[b-hvguytwzwh] {
    background: linear-gradient(135deg, #fff3e0 0%, #ffede0 100%);
    border-color: #e55100;
    color: #e55100;
    box-shadow: 0 4px 12px rgba(229, 81, 0, 0.2);
    transform: translateY(-1px);
}

.main-nav-link i[b-hvguytwzwh] {
    width: 24px;
    height: 24px;
    font-size: 18px;
    text-align: center;
    margin-right: 12px;
    color: inherit;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
    flex-shrink: 0;
}

.nav-scrollable.collapsed .main-nav-link i[b-hvguytwzwh],
.nav-scrollable.collapsed .nav-link i[b-hvguytwzwh] {
    margin-right: 0;
}

.nav-text[b-hvguytwzwh] {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
}

.main-nav-link:hover i[b-hvguytwzwh] {
    transform: scale(1.1);
}

/* Regular navigation items */
.nav-item[b-hvguytwzwh] {
    margin-bottom: 2px;
}

/* All navigation links */
.nav-link[b-hvguytwzwh] {
    display: flex !important;
    align-items: center !important;
    padding: 8px 16px !important;
    margin: 1px 16px !important;
    border-radius: 4px !important;
    text-decoration: none !important;
    color: #323130 !important;
    font-size: 14px !important;
    font-weight: 400 !important;
    line-height: 20px !important;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1) !important;
    position: relative !important;
    background: none !important;
    border: none !important;
}

.nav-link[b-hvguytwzwh]::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 0;
    height: 20px;
    background: linear-gradient(180deg, #e55100, #ff8a50);
    border-radius: 0 2px 2px 0;
    transform: translateY(-50%);
    transition: width 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover[b-hvguytwzwh] {
    background-color: #f8fafb !important;
    color: #e55100 !important;
    text-decoration: none !important;
    transform: translateX(8px) !important;
    box-shadow: 0 2px 8px rgba(229, 81, 0, 0.08) !important;
}

.nav-link:hover[b-hvguytwzwh]::before {
    width: 3px;
}

.nav-link.active[b-hvguytwzwh] {
    background: linear-gradient(135deg, #fff3e0 0%, #fff8f0 100%) !important;
    color: #e55100 !important;
    font-weight: 600 !important;
    transform: translateX(4px) !important;
    box-shadow: 0 2px 8px rgba(229, 81, 0, 0.12) !important;
}

.nav-link.active[b-hvguytwzwh]::before {
    width: 4px;
}

/* Navigation icons */
.nav-link i[b-hvguytwzwh] {
    width: 20px !important;
    height: 20px !important;
    font-size: 15px !important;
    text-align: center !important;
    margin-right: 12px !important;
    color: #8a8886 !important;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 4px !important;
    flex-shrink: 0 !important;
}

.nav-link:hover i[b-hvguytwzwh],
.nav-link.active i[b-hvguytwzwh] {
    color: #e55100 !important;
    background-color: rgba(229, 81, 0, 0.08) !important;
    transform: scale(1.1) !important;
}

/* Badge styling */
.badge[b-hvguytwzwh] {
    font-size: 10px;
    font-weight: 600;
    padding: 3px 7px;
    border-radius: 12px;
    margin-left: auto;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
    animation: badge-pulse-b-hvguytwzwh 3s infinite;
}

.badge.bg-warning[b-hvguytwzwh] {
    background: linear-gradient(135deg, #ff8c00, #ffaa00) !important;
    color: #ffffff;
}

.badge.bg-danger[b-hvguytwzwh] {
    background: linear-gradient(135deg, #dc3545, #e85a67) !important;
    color: #ffffff;
}

@keyframes badge-pulse-b-hvguytwzwh {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Urgent indicator styling */
.urgent-indicator[b-hvguytwzwh] {
    font-size: 8px !important;
    min-width: 14px;
    height: 14px;
    border-radius: 50%;
    animation: urgent-pulse-b-hvguytwzwh 2s infinite;
    background: linear-gradient(135deg, #dc3545, #ff4757) !important;
    color: #ffffff !important;
    box-shadow: 0 0 8px rgba(220, 53, 69, 0.4);
}

@keyframes urgent-pulse-b-hvguytwzwh {
    0% { 
        opacity: 1; 
        transform: scale(1);
        box-shadow: 0 0 8px rgba(220, 53, 69, 0.4);
    }
    50% { 
        opacity: 0.8; 
        transform: scale(1.1);
        box-shadow: 0 0 16px rgba(220, 53, 69, 0.6);
    }
    100% { 
        opacity: 1; 
        transform: scale(1);
        box-shadow: 0 0 8px rgba(220, 53, 69, 0.4);
    }
}

/* Desktop - always show navigation */
@media (min-width: 768px) {
    .navbar-toggler[b-hvguytwzwh] {
        display: none;
    }

    .nav-scrollable[b-hvguytwzwh] {
        display: block;
        height: calc(100vh - 56px);
        overflow-y: auto;
        border-right: 1px solid #e1e5e9;
    }
}

/* Mobile - responsive navigation */
@media (max-width: 767.98px) {
    /* Hide the checkbox toggle on mobile - handled by MainLayout */
    .navbar-toggler[b-hvguytwzwh] {
        display: none !important;
    }

    .nav-scrollable[b-hvguytwzwh] {
        display: block;
        position: relative;
        height: calc(100vh - 56px);
        overflow-y: auto;
        width: 100% !important;
        padding-bottom: 20px;
    }

    /* Hide collapse toggle on mobile */
    .nav-collapse-toggle[b-hvguytwzwh] {
        display: none !important;
    }

    /* Ensure all text is visible on mobile */
    .nav-scrollable .nav-text[b-hvguytwzwh],
    .nav-scrollable .brand-text[b-hvguytwzwh] {
        opacity: 1 !important;
        width: auto !important;
        overflow: visible !important;
    }

    .nav-scrollable .nav-section-header[b-hvguytwzwh] {
        opacity: 1 !important;
        height: auto !important;
        margin: 20px 0;
        padding: 0 16px;
    }

    /* Mobile-specific nav item styling */
    .nav-section[b-hvguytwzwh] {
        margin: 20px 0;
        padding: 0 8px;
    }

    .main-nav-link[b-hvguytwzwh] {
        margin: 0 8px 12px 8px;
        padding: 14px 18px;
    }

    .nav-link[b-hvguytwzwh] {
        padding: 10px 18px !important;
        margin: 2px 8px !important;
    }

    .nav-section-header[b-hvguytwzwh] {
        padding: 0 12px;
        font-size: 10px;
    }

    /* Ensure icons remain visible */
    .nav-scrollable .main-nav-link i[b-hvguytwzwh],
    .nav-scrollable .nav-link i[b-hvguytwzwh] {
        margin-right: 12px !important;
    }

    /* Disable collapsed state styles on mobile */
    .nav-scrollable.collapsed[b-hvguytwzwh] {
        width: 100% !important;
    }

    .nav-scrollable.collapsed .nav-text[b-hvguytwzwh],
    .nav-scrollable.collapsed .brand-text[b-hvguytwzwh] {
        opacity: 1 !important;
        width: auto !important;
    }

    .nav-scrollable.collapsed .nav-section-header[b-hvguytwzwh] {
        opacity: 1 !important;
        height: auto !important;
    }

    .nav-scrollable.collapsed .main-nav-link i[b-hvguytwzwh],
    .nav-scrollable.collapsed .nav-link i[b-hvguytwzwh] {
        margin-right: 12px !important;
    }
}

/* Scrollbar styling */
.nav-scrollable[b-hvguytwzwh]::-webkit-scrollbar {
    width: 6px;
}

.nav-scrollable[b-hvguytwzwh]::-webkit-scrollbar-track {
    background: rgba(229, 81, 0, 0.05);
    border-radius: 3px;
}

.nav-scrollable[b-hvguytwzwh]::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #e55100, #ff8a50);
    border-radius: 3px;
    transition: all 0.2s ease;
}

.nav-scrollable[b-hvguytwzwh]::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #bf360c, #e55100);
    transform: scaleX(1.2);
}

/* Collapsed state hover tooltips */
.nav-scrollable.collapsed .nav-link[b-hvguytwzwh],
.nav-scrollable.collapsed .main-nav-link[b-hvguytwzwh] {
    position: relative;
    justify-content: center !important;
    padding-left: 16px !important;
    padding-right: 16px !important;
}

.nav-scrollable.collapsed .nav-link[b-hvguytwzwh]::after,
.nav-scrollable.collapsed .main-nav-link[b-hvguytwzwh]::after {
    content: attr(title);
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    background: #323130;
    color: white;
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    margin-left: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.nav-scrollable.collapsed .nav-link:hover[b-hvguytwzwh]::after,
.nav-scrollable.collapsed .main-nav-link:hover[b-hvguytwzwh]::after {
    opacity: 1;
}

/* Focus states for accessibility */
.nav-link:focus[b-hvguytwzwh] {
    outline: 2px solid #e55100 !important;
    outline-offset: 2px !important;
    border-radius: 6px !important;
}

.main-nav-link:focus[b-hvguytwzwh] {
    outline: 2px solid #e55100;
    outline-offset: 2px;
}

/* Enhanced visual hierarchy */
.nav-section:nth-child(1) .nav-section-header[b-hvguytwzwh] {
    color: #e55100;
    font-weight: 800;
}

.nav-section:nth-child(1) .nav-section-header[b-hvguytwzwh]::after {
    background: linear-gradient(90deg, #e55100, transparent);
}

/* Loading skeleton for nav items (for future use) */
@keyframes nav-skeleton-b-hvguytwzwh {
    0% { background-color: #f0f0f0; }
    50% { background-color: #e0e0e0; }
    100% { background-color: #f0f0f0; }
}

.nav-skeleton[b-hvguytwzwh] {
    height: 44px;
    margin: 2px 16px;
    border-radius: 6px;
    animation: nav-skeleton-b-hvguytwzwh 1.5s infinite;
}
/* /Pages/Dashboard.razor.rz.scp.css */
/* Azure Portal-style Dashboard */
.azure-dashboard[b-kcu8t9gu09] {
    width: 100%;
    margin: 0;
}

.dashboard-welcome[b-kcu8t9gu09] {
    background: linear-gradient(135deg, #fff3e0 0%, #ffffff 100%);
    border: 1px solid #ffe0b2;
    border-radius: 8px;
    padding: 20px 24px;
    position: relative;
    overflow: hidden;
}

.dashboard-welcome[b-kcu8t9gu09]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #e55100, #ff8a50);
}

.welcome-message[b-kcu8t9gu09] {
    font-size: 16px;
    font-weight: 600;
    color: #323130;
    margin-bottom: 4px;
}

.current-date[b-kcu8t9gu09] {
    font-size: 14px;
    color: #605e5c;
}

.quick-stats[b-kcu8t9gu09] {
    display: flex;
    gap: 12px;
    align-items: center;
}

.stat-badge[b-kcu8t9gu09] {
    background: #f0fdf4;
    border: 1px solid #dcfce7;
    color: #166534;
    padding: 6px 12px;
    border-radius: 16px;
    font-size: 12px;
    font-weight: 500;
    display: flex;
    align-items: center;
}

/* Enhanced card styling for dashboard */
[b-kcu8t9gu09] .card {
    border: 1px solid #e1e5e9;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

[b-kcu8t9gu09] .card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-1px);
}

[b-kcu8t9gu09] .card-header {
    background: #fafbfc;
    border-bottom: 1px solid #e1e5e9;
    font-weight: 600;
    padding: 16px 20px;
}

[b-kcu8t9gu09] .card-body {
    padding: 20px;
}

/* Alert enhancements */
[b-kcu8t9gu09] .alert {
    border-radius: 6px;
    border: none;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

[b-kcu8t9gu09] .alert-warning {
    background: #fff8e1;
    color: #e65100;
    border-left: 4px solid #ff9800;
}

[b-kcu8t9gu09] .alert-success {
    background: #f1f8e9;
    color: #2e7d32;
    border-left: 4px solid #4caf50;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .dashboard-welcome[b-kcu8t9gu09] {
        padding: 16px;
    }

    .welcome-message[b-kcu8t9gu09] {
        font-size: 14px;
    }

    .current-date[b-kcu8t9gu09] {
        font-size: 12px;
    }

    .quick-stats[b-kcu8t9gu09] {
        margin-top: 12px;
    }

    .stat-badge[b-kcu8t9gu09] {
        font-size: 11px;
        padding: 4px 8px;
    }
}
/* /Pages/HR/Attendance/Index.razor.rz.scp.css */
.progress-bar-vertical[b-17qloi3ctc] {
    width: 30px;
    background: linear-gradient(to top, #28a745, #34ce57);
    border-radius: 4px;
    margin: 0 auto;
    min-height: 10px;
}
/* /Pages/HR/Departments/Index.razor.rz.scp.css */
.department-card[b-80vq3nk54i] {
    transition: transform 0.2s, box-shadow 0.2s;
}

.department-card:hover[b-80vq3nk54i] {
    transform: translateY(-2px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}

.avatar-sm[b-80vq3nk54i] {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.7rem;
}
/* /Pages/HR/Employees/EmployeeDetails.razor.rz.scp.css */
.avatar-circle-large[b-5khlk8dfyr] {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.25rem;
}
/* /Pages/Settings/ModuleManagement.razor.rz.scp.css */
.module-icon[b-0qcwlu3xwm] {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background-color: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: #6c757d;
}

.module-icon.active[b-0qcwlu3xwm] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.module-toggle[b-0qcwlu3xwm] {
    width: 3rem;
    height: 1.5rem;
    cursor: pointer;
}

.module-toggle:disabled[b-0qcwlu3xwm] {
    cursor: not-allowed;
    opacity: 0.5;
}

[b-0qcwlu3xwm] .border-success {
    border-left: 4px solid #198754 !important;
}
