/* /Components/Layout/MainLayout.razor.rz.scp.css */
/* =============================================
   Main Layout - Modern Admin Dashboard
   Design System: Data-Dense, Professional
   ============================================= */

/* ── Layout Wrapper ── */
.layout-wrapper[b-j65y7q72mt] {
    display: flex;
    min-height: 100vh;
    background: #f1f5f9;
}

/* ── Sidebar ── */
.sidebar[b-j65y7q72mt] {
    width: 252px;
    height: 100vh;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 100;
    background: linear-gradient(180deg, #1e293b 0%, #0f172a 100%);
    box-shadow: 2px 0 20px rgba(0, 0, 0, 0.14);
    display: flex;
    flex-direction: column;
    color: #fff;
    transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.28s cubic-bezier(0.4, 0, 0.2, 1);
    /* 默认展开状态，不设transform */
}

.sidebar:not(.open)[b-j65y7q72mt] {
    transform: translateX(-100%);
    box-shadow: none;
}

/* ── Main Content ── */
.main-content[b-j65y7q72mt] {
    flex: 1;
    margin-left: 252px;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background: #f1f5f9;
    transition: margin-left 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

/* 侧边栏折叠时主内容区占满 */
.main-content.sidebar-collapsed[b-j65y7q72mt] {
    margin-left: 0;
}

/* ── Top Header ── */
.top-header[b-j65y7q72mt] {
    height: 60px;
    background: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 50;
    box-shadow: 0 1px 4px rgba(15, 23, 42, 0.06);
}

.header-left[b-j65y7q72mt] {
    display: flex;
    align-items: center;
    gap: 0.875rem;
}

/* 汉堡按钮 */
.sidebar-toggle[b-j65y7q72mt] {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    background: #fff;
    cursor: pointer;
    transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
    color: #64748b;
    flex-shrink: 0;
}

.sidebar-toggle:hover[b-j65y7q72mt] {
    background: #f8fafc;
    border-color: #c7d2e0;
    color: #1e293b;
}

.sidebar-toggle:focus-visible[b-j65y7q72mt] {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
}

/* 面包屑 */
.breadcrumb[b-j65y7q72mt] {
    font-size: 0.925rem;
    font-weight: 600;
    color: #1e293b;
    letter-spacing: -0.01em;
}

.header-right[b-j65y7q72mt] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

/* ── 用户信息 ── */
.user-info[b-j65y7q72mt] {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.4rem 0.75rem 0.4rem 0.5rem;
    border-radius: 8px;
    background: #f8fafc;
    border: 1px solid #e8f0f8;
    transition: background 0.15s ease, border-color 0.15s ease;
    cursor: pointer;
}

.user-info:hover[b-j65y7q72mt] {
    background: #eff6ff;
    border-color: #bfdbfe;
}

.user-avatar[b-j65y7q72mt] {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #3b82f6 0%, #6366f1 100%);
    border-radius: 7px;
    color: #fff;
    flex-shrink: 0;
}

.user-name[b-j65y7q72mt] {
    font-size: 0.825rem;
    font-weight: 600;
    color: #334155;
    max-width: 120px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ── Content Wrapper ── */
.content-wrapper[b-j65y7q72mt] {
    flex: 1;
    padding: 1.5rem;
    overflow-y: auto;
}

/* ── Page helper ── */
.page[b-j65y7q72mt] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-j65y7q72mt] {
    flex: 1;
}

/* ── Sidebar Overlay (mobile only) ── */
.sidebar-overlay[b-j65y7q72mt] {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 99;
}

@media (max-width: 1024px) {
    .sidebar-overlay.show[b-j65y7q72mt] {
        display: block;
        backdrop-filter: blur(2px);
        -webkit-backdrop-filter: blur(2px);
    }
}

/* ── Error Toast ── */
.error-toast[b-j65y7q72mt] {
    position: fixed;
    bottom: 1.25rem;
    left: 50%;
    transform: translateX(-50%);
    display: none;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.25rem;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: #fff;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(239, 68, 68, 0.35);
    z-index: 1000;
    font-size: 0.85rem;
    font-weight: 500;
    white-space: nowrap;
}

.error-toast svg[b-j65y7q72mt] {
    flex-shrink: 0;
}

.error-toast .reload[b-j65y7q72mt] {
    color: #fff;
    text-decoration: underline;
    font-weight: 600;
    margin-left: 0.4rem;
}

.error-toast .dismiss[b-j65y7q72mt] {
    cursor: pointer;
    padding: 0.2rem;
    border-radius: 4px;
    transition: background 0.15s ease;
    margin-left: 0.4rem;
    display: flex;
    align-items: center;
}

.error-toast .dismiss:hover[b-j65y7q72mt] {
    background: rgba(255, 255, 255, 0.2);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .sidebar[b-j65y7q72mt] {
        z-index: 200;
    }

    /* 移动端侧边栏默认隐藏（无论 .open 与否，由 isSidebarOpen 控制） */
    .sidebar:not(.open)[b-j65y7q72mt] {
        transform: translateX(-100%);
        box-shadow: none;
    }

    .sidebar.open[b-j65y7q72mt] {
        transform: translateX(0);
        box-shadow: 6px 0 32px rgba(0, 0, 0, 0.22);
    }

    .main-content[b-j65y7q72mt],
    .main-content.sidebar-collapsed[b-j65y7q72mt] {
        margin-left: 0;
    }
}

@media (max-width: 640px) {
    .top-header[b-j65y7q72mt] {
        padding: 0 1rem;
        height: 56px;
    }

    .content-wrapper[b-j65y7q72mt] {
        padding: 1rem;
    }

    .user-name[b-j65y7q72mt] {
        display: none;
    }

    .breadcrumb[b-j65y7q72mt] {
        font-size: 0.875rem;
    }
}

/* ── Scrollbar ── */
[b-j65y7q72mt]::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

[b-j65y7q72mt]::-webkit-scrollbar-track {
    background: transparent;
}

[b-j65y7q72mt]::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 3px;
}

[b-j65y7q72mt]::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

/* ── Text Selection ── */
[b-j65y7q72mt]::selection {
    background: rgba(59, 130, 246, 0.18);
    color: #1e40af;
}
/* /Components/Layout/NavMenu.razor.rz.scp.css */
/* =============================================
   Sidebar Navigation - Modern Admin Dashboard
   Design System: Data-Dense, Professional
   All classes prefixed with sn- to avoid Bootstrap conflicts
   ============================================= */

/* ── Brand / Header ── */
.sn-sidebar-header[b-5bndfk4shp] {
    padding: 1.25rem 1rem 1.1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.12) 0%, rgba(99, 102, 241, 0.08) 100%);
    flex-shrink: 0;
}

.sn-brand[b-5bndfk4shp] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    user-select: none;
}

.sn-brand-icon-wrapper[b-5bndfk4shp] {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #3b82f6 0%, #6366f1 100%);
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(59, 130, 246, 0.35);
    flex-shrink: 0;
}

.sn-brand-icon[b-5bndfk4shp] {
    color: white;
}

.sn-brand-text-wrapper[b-5bndfk4shp] {
    display: flex;
    flex-direction: column;
}

.sn-brand-text[b-5bndfk4shp] {
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.sn-brand-subtitle[b-5bndfk4shp] {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.65);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 2px;
}

/* ── Nav Container ── */
.sn-sidebar-nav[b-5bndfk4shp] {
    padding: 0.875rem 0.625rem;
    display: flex;
    flex-direction: column;
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    gap: 0;
}

.sn-sidebar-nav[b-5bndfk4shp]::-webkit-scrollbar {
    width: 3px;
}

.sn-sidebar-nav[b-5bndfk4shp]::-webkit-scrollbar-track {
    background: transparent;
}

.sn-sidebar-nav[b-5bndfk4shp]::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.12);
    border-radius: 2px;
}

.sn-sidebar-nav[b-5bndfk4shp]::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.22);
}

/* ── Section ── */
.sn-nav-section[b-5bndfk4shp] {
    margin-bottom: 0.25rem;
}

.sn-nav-section-header[b-5bndfk4shp] {
    padding: 0.6rem 0.75rem 0.3rem;
}

.sn-nav-section-title[b-5bndfk4shp] {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.6);
}

.sn-nav-section-bottom[b-5bndfk4shp] {
    margin-top: auto;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
}

/* ── Nav Item ── */
/* 覆盖 NavLink 渲染的 <a> 标签和 <button> 标签的所有默认样式 */
.sn-nav-item[b-5bndfk4shp] {
    display: flex !important;
    align-items: center !important;
    gap: 0.625rem;
    padding: 0.6rem 0.75rem;
    margin: 0.1rem 0;
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.85) !important;
    text-decoration: none !important;
    font-size: 0.85rem;
    font-weight: 500;
    transition: background 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
    position: relative;
    cursor: pointer;
    border: none !important;
    background: transparent !important;
    width: 100%;
    text-align: left;
    outline: none;
    line-height: 1.4 !important;
    white-space: nowrap;
}

/* 确保访问过的链接也保持白色 */
.sn-nav-item:visited[b-5bndfk4shp] {
    color: rgba(255, 255, 255, 0.85) !important;
}

.sn-nav-item:hover[b-5bndfk4shp] {
    background: rgba(255, 255, 255, 0.09) !important;
    color: rgba(255, 255, 255, 0.95) !important;
    text-decoration: none !important;
}

/* 激活态：左侧蓝绿渐变指示条 + 背景高亮 */
.sn-nav-item.active[b-5bndfk4shp] {
    background: linear-gradient(90deg, rgba(59, 130, 246, 0.25) 0%, rgba(99, 102, 241, 0.15) 100%) !important;
    color: #fff !important;
}

.sn-nav-item.active[b-5bndfk4shp]::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 56%;
    background: linear-gradient(180deg, #60a5fa 0%, #818cf8 100%);
    border-radius: 0 3px 3px 0;
}

/* ── Icon Wrapper ── */
.sn-nav-item-icon[b-5bndfk4shp] {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 7px;
    background: rgba(255, 255, 255, 0.04);
    flex-shrink: 0;
    transition: background 0.15s ease;
}

.sn-nav-item:hover .sn-nav-item-icon[b-5bndfk4shp] {
    background: rgba(255, 255, 255, 0.09);
}

.sn-nav-item.active .sn-nav-item-icon[b-5bndfk4shp] {
    background: rgba(59, 130, 246, 0.22);
}

.sn-nav-item-icon svg[b-5bndfk4shp] {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.15s ease;
}

.sn-nav-item:hover .sn-nav-item-icon svg[b-5bndfk4shp] {
    color: rgba(255, 255, 255, 0.92);
}

.sn-nav-item.active .sn-nav-item-icon svg[b-5bndfk4shp] {
    color: #93c5fd;
}

/* ── Item Text ── */
.sn-nav-item-text[b-5bndfk4shp] {
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1;
}

/* ── Badge ── */
.sn-nav-item-badge[b-5bndfk4shp] {
    font-size: 0.6rem;
    font-weight: 700;
    padding: 0.12rem 0.38rem;
    border-radius: 4px;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    flex-shrink: 0;
    box-shadow: 0 2px 6px rgba(245, 158, 11, 0.3);
}

/* ── Logout Form ── */
.sn-nav-form[b-5bndfk4shp] {
    margin: 0;
}

.sn-nav-logout[b-5bndfk4shp] {
    width: 100%;
    cursor: pointer;
}

.sn-nav-logout:hover[b-5bndfk4shp] {
    background: rgba(239, 68, 68, 0.12) !important;
    color: #fca5a5 !important;
}

.sn-nav-logout:hover .sn-nav-item-icon[b-5bndfk4shp] {
    background: rgba(239, 68, 68, 0.18) !important;
}

.sn-nav-logout:hover .sn-nav-item-icon svg[b-5bndfk4shp] {
    color: #f87171 !important;
}

/* ── Focus ring for keyboard nav ── */
.sn-nav-item:focus-visible[b-5bndfk4shp] {
    outline: 2px solid rgba(99, 102, 241, 0.6);
    outline-offset: -2px;
}

/* ── Animations ── */
@keyframes navFadeIn-b-5bndfk4shp {
    from {
        opacity: 0;
        transform: translateX(-6px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.sn-nav-section:nth-child(1) .sn-nav-item[b-5bndfk4shp] { animation: navFadeIn-b-5bndfk4shp 0.25s ease both; animation-delay: 0.04s; }
.sn-nav-section:nth-child(2) .sn-nav-item:nth-child(2)[b-5bndfk4shp] { animation: navFadeIn-b-5bndfk4shp 0.25s ease both; animation-delay: 0.08s; }
.sn-nav-section:nth-child(2) .sn-nav-item:nth-child(3)[b-5bndfk4shp] { animation: navFadeIn-b-5bndfk4shp 0.25s ease both; animation-delay: 0.12s; }
.sn-nav-section:nth-child(2) .sn-nav-item:nth-child(4)[b-5bndfk4shp] { animation: navFadeIn-b-5bndfk4shp 0.25s ease both; animation-delay: 0.16s; }

@media (prefers-reduced-motion: reduce) {
    .sn-nav-item[b-5bndfk4shp] { animation: none !important; }
}
/* /Components/Pages/Home.razor.rz.scp.css */
/* =============================================
   Home Dashboard - Modern Admin Style
   Design System: Data-Dense, Professional
   ============================================= */

.dashboard[b-x0adpbawup] {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* ── 欢迎横幅 ── */
.welcome-banner[b-x0adpbawup] {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 60%, #1a1040 100%);
    border-radius: 14px;
    padding: 1.5rem 2rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.15);
}

.welcome-banner[b-x0adpbawup]::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.2) 0%, transparent 70%);
    pointer-events: none;
}

.welcome-banner[b-x0adpbawup]::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: 30%;
    width: 300px;
    height: 200px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.welcome-content[b-x0adpbawup] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.welcome-text[b-x0adpbawup] {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.welcome-title[b-x0adpbawup] {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
    letter-spacing: -0.02em;
}

.welcome-icon[b-x0adpbawup] {
    color: #60a5fa;
    flex-shrink: 0;
}

.welcome-subtitle[b-x0adpbawup] {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
    padding-left: 2.5rem;
}

.welcome-date[b-x0adpbawup] {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.2rem;
}

.date-label[b-x0adpbawup] {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.date-value[b-x0adpbawup] {
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
}

/* ── KPI 卡片网格 ── */
.kpi-grid[b-x0adpbawup] {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.kpi-card[b-x0adpbawup] {
    background: #fff;
    border-radius: 12px;
    padding: 1.25rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06), 0 4px 12px rgba(0, 0, 0, 0.04);
    border: 1px solid #f1f5f9;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    cursor: default;
}

.kpi-card:hover[b-x0adpbawup] {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.kpi-icon-wrap[b-x0adpbawup] {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.kpi-blue .kpi-icon-wrap[b-x0adpbawup]  { background: rgba(59, 130, 246, 0.12); color: #3b82f6; }
.kpi-green .kpi-icon-wrap[b-x0adpbawup] { background: rgba(34, 197, 94, 0.12);  color: #22c55e; }
.kpi-orange .kpi-icon-wrap[b-x0adpbawup] { background: rgba(249, 115, 22, 0.12); color: #f97316; }
.kpi-purple .kpi-icon-wrap[b-x0adpbawup] { background: rgba(139, 92, 246, 0.12); color: #8b5cf6; }

.kpi-body[b-x0adpbawup] {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    min-width: 0;
}

.kpi-label[b-x0adpbawup] {
    font-size: 0.78rem;
    color: #94a3b8;
    font-weight: 500;
    white-space: nowrap;
}

.kpi-value[b-x0adpbawup] {
    font-size: 1.6rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.kpi-trend[b-x0adpbawup] {
    display: inline-flex;
    align-items: center;
    gap: 0.2rem;
    font-size: 0.72rem;
    font-weight: 500;
    margin-top: 0.1rem;
}

.kpi-trend-up[b-x0adpbawup]   { color: #22c55e; }
.kpi-trend-down[b-x0adpbawup] { color: #ef4444; }
.kpi-trend-neutral[b-x0adpbawup] { color: #94a3b8; }

/* ── 主网格（快捷入口 + 系统信息） ── */
.main-grid[b-x0adpbawup] {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 1rem;
}

/* ── 通用卡片 ── */
.card[b-x0adpbawup] {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #f1f5f9;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

.card-header[b-x0adpbawup] {
    padding: 1rem 1.25rem;
    border-bottom: 1px solid #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.card-title[b-x0adpbawup] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #334155;
}

.card-title svg[b-x0adpbawup] {
    color: #64748b;
}

/* ── 快捷入口网格 ── */
.shortcut-grid[b-x0adpbawup] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}

.shortcut-item[b-x0adpbawup] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    padding: 1.25rem 0.75rem;
    text-decoration: none;
    color: #475569;
    font-size: 0.8rem;
    font-weight: 500;
    transition: background 0.15s ease, color 0.15s ease;
    border-right: 1px solid #f1f5f9;
    border-bottom: 1px solid #f1f5f9;
    cursor: pointer;
}

.shortcut-item:nth-child(3n)[b-x0adpbawup] {
    border-right: none;
}

.shortcut-item:nth-last-child(-n+3)[b-x0adpbawup] {
    border-bottom: none;
}

.shortcut-item:hover[b-x0adpbawup] {
    background: #f8fafc;
    color: #0f172a;
}

.shortcut-item:hover .shortcut-icon[b-x0adpbawup] {
    transform: scale(1.08);
}

.shortcut-icon[b-x0adpbawup] {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
}

.shortcut-blue[b-x0adpbawup]   { background: rgba(59, 130, 246, 0.1); color: #3b82f6; }
.shortcut-green[b-x0adpbawup]  { background: rgba(34, 197, 94, 0.1);  color: #22c55e; }
.shortcut-orange[b-x0adpbawup] { background: rgba(249, 115, 22, 0.1); color: #f97316; }
.shortcut-purple[b-x0adpbawup] { background: rgba(139, 92, 246, 0.1); color: #8b5cf6; }
.shortcut-teal[b-x0adpbawup]   { background: rgba(20, 184, 166, 0.1); color: #14b8a6; }
.shortcut-red[b-x0adpbawup]    { background: rgba(239, 68, 68, 0.1);  color: #ef4444; }

/* ── 系统信息列表 ── */
.info-list[b-x0adpbawup] {
    padding: 0.5rem 0;
}

.info-item[b-x0adpbawup] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.7rem 1.25rem;
    border-bottom: 1px solid #f8fafc;
    transition: background 0.15s ease;
}

.info-item:last-child[b-x0adpbawup] {
    border-bottom: none;
}

.info-item:hover[b-x0adpbawup] {
    background: #f8fafc;
}

.info-label[b-x0adpbawup] {
    font-size: 0.8rem;
    color: #94a3b8;
    font-weight: 500;
}

.info-value[b-x0adpbawup] {
    font-size: 0.85rem;
    color: #334155;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.info-badge[b-x0adpbawup] {
    padding: 0.2rem 0.6rem;
    border-radius: 5px;
    font-size: 0.75rem;
    font-weight: 600;
}

.info-badge-blue[b-x0adpbawup]  { background: rgba(59, 130, 246, 0.1); color: #3b82f6; }
.info-badge-green[b-x0adpbawup] { background: rgba(34, 197, 94, 0.1);  color: #22c55e; }

.status-dot[b-x0adpbawup] {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.status-online[b-x0adpbawup] {
    background: #22c55e;
    box-shadow: 0 0 0 2px rgba(34, 197, 94, 0.2);
    animation: pulse-green-b-x0adpbawup 2s infinite;
}

@keyframes pulse-green-b-x0adpbawup {
    0%, 100% { box-shadow: 0 0 0 2px rgba(34, 197, 94, 0.2); }
    50%       { box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.1); }
}

/* ── 响应式 ── */
@media (max-width: 1200px) {
    .kpi-grid[b-x0adpbawup] {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .main-grid[b-x0adpbawup] {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .welcome-content[b-x0adpbawup] {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .welcome-banner[b-x0adpbawup] {
        padding: 1.25rem;
    }

    .welcome-title[b-x0adpbawup] {
        font-size: 1.25rem;
    }

    .kpi-grid[b-x0adpbawup] {
        grid-template-columns: repeat(2, 1fr);
    }

    .shortcut-grid[b-x0adpbawup] {
        grid-template-columns: repeat(2, 1fr);
    }

    .shortcut-item:nth-child(3n)[b-x0adpbawup] {
        border-right: 1px solid #f1f5f9;
    }

    .shortcut-item:nth-child(2n)[b-x0adpbawup] {
        border-right: none;
    }
}
