    @charset "UTF-8";

    :root {
        --ny-bg-page: #f5f7fb;
        --ny-bg-card: #ffffff;
        --ny-bg-soft: #f7f9fc;
        --ny-bg-table: #f2f5fa;
        --ny-bg-primary-soft: #eef5ff;
        --ny-primary: #2563eb;
        --ny-primary-dark: #1d4ed8;
        --ny-success: #16a34a;
        --ny-warning: #f59e0b;
        --ny-danger: #ef4444;
        --ny-text-1: #111827;
        --ny-text-2: #475569;
        --ny-text-3: #94a3b8;
        --ny-border: #e5eaf2;
        --ny-border-deep: #d8e1ec;
        --ny-scrollbar-size: 10px;
        --ny-scrollbar-track: rgba(226, 232, 240, 0.55);
        --ny-scrollbar-thumb: rgba(203, 213, 225, 0.75);
        --ny-scrollbar-thumb-hover: rgba(148, 163, 184, 0.82);
        --ny-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
        --ny-shadow-soft: 0 1px 3px rgba(15, 23, 42, 0.06);
        --ny-radius-card: 10px;
        --ny-radius-sm: 6px;
        --ny-font: "Microsoft YaHei", "PingFang SC", "Segoe UI", sans-serif;
    }

    *,
    *::before,
    *::after {
        box-sizing: border-box;
    }

    html,
    body {
        min-height: 100%;
    }

    body.ny-layout-enterprise {
        margin: 0;
        font-family: var(--ny-font);
        font-size: 14px;
        line-height: 1.6;
        color: var(--ny-text-1);
        background: var(--ny-bg-page);
        -webkit-font-smoothing: antialiased;
    }

    :where(body.ny-layout-enterprise),
    :where(body.ny-layout-enterprise *) {
        scrollbar-width: thin;
        scrollbar-color: var(--ny-scrollbar-thumb) var(--ny-scrollbar-track);
    }

    :where(body.ny-layout-enterprise)::-webkit-scrollbar,
    :where(body.ny-layout-enterprise *)::-webkit-scrollbar {
        width: var(--ny-scrollbar-size);
        height: var(--ny-scrollbar-size);
    }

    :where(body.ny-layout-enterprise)::-webkit-scrollbar-track,
    :where(body.ny-layout-enterprise *)::-webkit-scrollbar-track {
        background: var(--ny-scrollbar-track);
        border-radius: 999px;
    }

    :where(body.ny-layout-enterprise)::-webkit-scrollbar-thumb,
    :where(body.ny-layout-enterprise *)::-webkit-scrollbar-thumb {
        background: var(--ny-scrollbar-thumb);
        border: 2px solid transparent;
        border-radius: 999px;
        background-clip: padding-box;
    }

    :where(body.ny-layout-enterprise)::-webkit-scrollbar-thumb:hover,
    :where(body.ny-layout-enterprise *)::-webkit-scrollbar-thumb:hover {
        background: var(--ny-scrollbar-thumb-hover);
        border: 2px solid transparent;
        background-clip: padding-box;
    }

    :where(body.ny-layout-enterprise)::-webkit-scrollbar-corner,
    :where(body.ny-layout-enterprise *)::-webkit-scrollbar-corner {
        background: transparent;
    }

    html,
    body,
    * {
        scrollbar-width: thin;
        scrollbar-color: var(--ny-scrollbar-thumb) var(--ny-scrollbar-track);
    }

    html::-webkit-scrollbar,
    body::-webkit-scrollbar,
    *::-webkit-scrollbar {
        width: var(--ny-scrollbar-size);
        height: var(--ny-scrollbar-size);
    }

    html::-webkit-scrollbar-track,
    body::-webkit-scrollbar-track,
    *::-webkit-scrollbar-track {
        background: var(--ny-scrollbar-track);
        border-radius: 999px;
    }

    html::-webkit-scrollbar-thumb,
    body::-webkit-scrollbar-thumb,
    *::-webkit-scrollbar-thumb {
        background: var(--ny-scrollbar-thumb);
        border: 2px solid transparent;
        border-radius: 999px;
        background-clip: padding-box;
    }

    html::-webkit-scrollbar-thumb:hover,
    body::-webkit-scrollbar-thumb:hover,
    *::-webkit-scrollbar-thumb:hover {
        background: var(--ny-scrollbar-thumb-hover);
        border: 2px solid transparent;
        background-clip: padding-box;
    }

    html::-webkit-scrollbar-corner,
    body::-webkit-scrollbar-corner,
    *::-webkit-scrollbar-corner {
        background: transparent;
    }

    a {
        color: inherit;
        text-decoration: none;
    }

    img {
        max-width: 100%;
        display: block;
    }

    .ny-card {
        background: var(--ny-bg-card);
        border: 1px solid var(--ny-border);
        border-radius: var(--ny-radius-card);
        box-shadow: var(--ny-shadow-soft);
    }

    .ny-btn,
    .btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
        height: 34px;
        padding: 0 14px;
        border: 1px solid transparent;
        border-radius: 6px;
        font-size: 13px;
        font-weight: 600;
        cursor: pointer;
        transition: all .2s ease;
    }

    .ny-btn i,
    .btn i {
        font-size: 15px;
    }

    .ny-btn-primary,
    .btn-primary {
        color: #fff !important;
        background: var(--ny-primary) !important;
        border-color: var(--ny-primary) !important;
    }

    .ny-btn-primary:hover,
    .btn-primary:hover {
        background: var(--ny-primary-dark) !important;
        border-color: var(--ny-primary-dark) !important;
    }

    .ny-btn-light {
        color: var(--ny-primary) !important;
        background: #fff !important;
        border-color: #bfd3ff !important;
    }

    .ny-btn-light:hover {
        background: #f5f9ff !important;
    }

    .ny-btn-inline {
        height: 30px;
        padding: 0 12px;
        font-size: 12px;
    }

    .ny-badge {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        height: 22px;
        padding: 0 8px;
        border-radius: 999px;
        font-size: 12px;
        font-weight: 600;
    }

    .ny-badge-warn {
        background: #fff3db;
        color: #b45309;
    }

    .ny-badge-soft {
        background: #eef4ff;
        color: var(--ny-primary);
    }

    .ny-badge-success {
        background: rgba(34, 197, 94, 0.12);
        color: #15803d;
    }

    .ny-badge-default {
        background: #f1f5f9;
        color: #64748b;
    }

    .ny-badge-info {
        background: rgba(37, 99, 235, 0.1);
        color: var(--ny-primary);
    }

    .ny-main {
        margin-left: 216px;
        padding: 68px 16px 20px;
        transition: margin-left .2s ease;
    }

    .container-fluid {
        max-width: 1680px;
        margin: 0 auto;
        padding: 0;
    }

    .ny-sidebar {
        position: fixed;
        top: 52px;
        right: auto;
        bottom: 0;
        left: 0;
        width: 228px;
        display: flex;
        flex-direction: column;
        background: #ffffff;
        border-right: 1px solid var(--ny-border-deep);
        z-index: 1002;
        overflow: hidden;
        box-shadow: 0 12px 28px rgba(15, 23, 42, 0.04);
        transition: width .28s ease, transform .28s ease, box-shadow .28s ease;
    }

    .ny-sidebar-logo {
        display: flex;
        align-items: center;
        height: 60px;
        padding: 0 16px;
        border-bottom: 1px solid var(--ny-border);
    }

    .ny-sidebar-logo a {
        display: flex;
        align-items: center;
        min-width: 0;
    }

    .ny-logo-img {
        max-height: 34px;
        width: auto;
    }

    .ny-logo-text {
        margin-left: 10px;
        overflow: hidden;
        color: var(--ny-text-1);
        font-size: 17px;
        font-weight: 700;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .ny-sidebar-menu {
        flex: 1;
        overflow-y: auto;
        overflow-x: hidden;
        overflow-anchor: none;
        scrollbar-gutter: stable;
        padding: 16px 12px 18px;
    }

    .ny-sidebar-menu::-webkit-scrollbar {
        width: 4px;
    }

    .ny-sidebar-menu::-webkit-scrollbar-thumb {
        background: #d7dfeb;
        border-radius: 999px;
    }

    .ny-menu-list,
    .ny-menu-sub {
        margin: 0;
        padding: 0;
        list-style: none;
    }

    .ny-menu-list {
        display: grid;
        gap: 8px;
        align-content: start;
    }

    .ny-menu-group,
    .ny-menu-sub-item {
        position: relative;
    }

    .ny-menu-link {
        display: flex;
        align-items: center;
        gap: 12px;
        min-height: 46px;
        margin-bottom: 0;
        padding: 0 14px;
        color: var(--ny-text-2);
        border-radius: 12px;
        transition: color .22s ease, background-color .22s ease, box-shadow .22s ease;
    }

    .ny-menu-link:hover {
        color: var(--ny-primary);
        background: #f3f7ff;
    }

    .ny-menu-link.active {
        color: #fff;
        background: var(--ny-primary);
        box-shadow: none;
    }

    .ny-menu-link.active .ny-menu-icon,
    .ny-menu-link.active .ny-menu-text,
    .ny-menu-link.active .ny-menu-arrow {
        color: inherit;
    }

    .ny-menu-icon {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 20px;
        min-width: 20px;
        height: 20px;
        color: #5f6f84;
        transition: color .22s ease, transform .22s ease;
    }

    .ny-menu-icon i {
        font-size: 18px;
    }

    .ny-menu-text {
        flex: 1;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        overflow: hidden;
        font-size: 14px;
        font-weight: 700;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .ny-menu-text .badge,
    .ny-menu-text [class*="badge-"] {
        font-size: 10px;
    }

    .ny-menu-arrow {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 14px;
        min-width: 14px;
        color: #8a98ab;
        transition: transform .24s ease, color .22s ease;
    }

    .ny-menu-arrow::before {
        content: '';
        width: 6px;
        height: 6px;
        border-top: 1.5px solid currentColor;
        border-right: 1.5px solid currentColor;
        transform: rotate(45deg);
        transform-origin: center;
    }

    .ny-menu-arrow .ny-icon {
        width: 12px;
        height: 12px;
    }

    .ny-menu-arrow i {
        display: none;
    }

    .ny-menu-link.expanded .ny-menu-arrow {
        transform: rotate(90deg);
    }

    .ny-menu-sub {
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        clip-path: inset(0 0 100% 0);
        transform-origin: top;
        transform: translateY(-6px) scaleY(.96);
        will-change: max-height, opacity, transform;
        transition: max-height .35s cubic-bezier(0.4, 0, 0.2, 1), opacity .28s ease, transform .28s ease, clip-path .28s ease;
    }

    .ny-menu-sub.show {
        max-height: 1000px;
        opacity: 1;
        clip-path: inset(0 0 0 0);
        transform: translateY(0) scaleY(1);
        animation: ny-menu-sub-reveal .34s cubic-bezier(0.22, 1, 0.36, 1) both;
    }

    .ny-menu-sub > .ny-menu-sub-item {
        opacity: 0;
        transform: translateY(-4px);
        margin-bottom: 4px;
        transition: opacity .22s ease, transform .22s ease;
    }

    .ny-menu-sub > .ny-menu-sub-item:last-child {
        margin-bottom: 0;
    }

    .ny-menu-sub.show > .ny-menu-sub-item {
        opacity: 1;
        transform: translateY(0);
        animation: ny-menu-sub-item-in .26s cubic-bezier(0.22, 1, 0.36, 1) both;
    }

    .ny-menu-sub.show > .ny-menu-sub-item:nth-child(1) {
        animation-delay: .03s;
    }

    .ny-menu-sub.show > .ny-menu-sub-item:nth-child(2) {
        animation-delay: .06s;
    }

    .ny-menu-sub.show > .ny-menu-sub-item:nth-child(3) {
        animation-delay: .09s;
    }

    .ny-menu-sub.show > .ny-menu-sub-item:nth-child(4) {
        animation-delay: .12s;
    }

    .ny-menu-sub .ny-menu-link {
        min-height: 40px;
        margin-left: 12px;
        padding-left: 12px;
        font-size: 13px;
        border-radius: 10px;
    }

    .ny-menu-sub-l3 .ny-menu-link {
        margin-left: 24px;
    }

    .ny-topbar,
    #page-topbar.ny-topbar {
        position: fixed;
        top: 0;
        right: 0;
        left: 0;
        z-index: 1001;
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: 52px;
        padding: 0 16px;
        background: rgba(255, 255, 255, 0.98);
        border-bottom: 1px solid var(--ny-border-deep);
        transition: left .2s ease;
        box-shadow: none;
    }

    .ny-topbar-left,
    .ny-topbar-right {
        display: flex;
        align-items: center;
        gap: 14px;
    }

    .ny-topbar-right-dashboard {
        gap: 10px;
    }

    .ny-topbar-brand {
        display: flex;
        align-items: center;
        gap: 10px;
        text-decoration: none;
        flex-shrink: 0;
    }

    .ny-topbar-brand-img {
        height: 46px;
        width: auto;
        max-width: 150px;
        object-fit: contain;
        display: block;
    }

    .ny-topbar-brand-text {
        color: var(--ny-text-1);
        font-size: 15px;
        font-weight: 700;
        white-space: nowrap;
    }

    .ny-menu-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        padding: 0;
        color: #64748b;
        background: transparent;
        border: 1px solid transparent;
        border-radius: 10px;
        cursor: pointer;
        transition: color .22s ease, background-color .22s ease, border-color .22s ease, transform .22s ease;
    }

    .ny-menu-toggle:hover {
        color: var(--ny-primary);
        background: #f3f6fb;
    }

    .ny-menu-toggle i {
        font-size: 20px;
        transition: transform .28s ease;
    }

    .ny-topbar-center {
        flex: 1;
        display: flex;
        justify-content: center;
    }

    .ny-topbar-search-wrapper {
        position: relative;
        width: 100%;
        max-width: 420px;
    }

    .ny-topbar-search-input-wrap {
        position: relative;
    }

    .ny-topbar-search-input-wrap > i {
        position: absolute;
        top: 50%;
        left: 12px;
        color: #94a3b8;
        font-size: 16px;
        transform: translateY(-50%);
    }

    .ny-topbar-search-input {
        width: 100%;
        height: 34px;
        padding: 0 14px 0 38px;
        color: var(--ny-text-1);
        background: #f8fafc;
        border: 1px solid var(--ny-border);
        border-radius: 18px;
        outline: none;
        transition: all .2s ease;
    }

    .ny-topbar-search-input:focus {
        background: #fff;
        border-color: #bfd3ff;
        box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.08);
    }

    .ny-topbar-search-dropdown,
    .ny-topbar-dropdown-menu {
        position: absolute;
        top: calc(100% + 10px);
        right: 0;
        background: #fff;
        border: 1px solid var(--ny-border);
        border-radius: 12px;
        box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12), 0 4px 14px rgba(15, 23, 42, 0.06);
        z-index: 20;
    }

    .ny-topbar-search-dropdown {
        left: 0;
        min-width: 680px;
        padding: 16px;
    }

    .ny-search-tags,
    .ny-search-links,
    .ny-search-quick-grid {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
    }

    .ny-search-tags {
        margin-bottom: 16px;
        padding-bottom: 12px;
        border-bottom: 1px solid var(--ny-border);
    }

    .ny-search-tags a,
    .ny-search-link-item,
    .ny-search-quick-item {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        padding: 6px 10px;
        color: var(--ny-text-2);
        background: #f8fafc;
        border-radius: 8px;
        transition: all .2s ease;
    }

    .ny-search-tags a:hover,
    .ny-search-link-item:hover,
    .ny-search-quick-item:hover {
        color: var(--ny-primary);
        background: #eef5ff;
    }

    .ny-search-content {
        display: grid;
        grid-template-columns: 1.1fr .9fr;
        gap: 20px;
    }

    .ny-search-content .ny-search-section + .ny-search-section {
        padding-left: 20px;
        border-left: 1px dashed var(--ny-border);
    }

    .ny-search-quick {
        padding-left: 20px;
        border-left: 1px dashed var(--ny-border);
    }

    .ny-search-section-title {
        margin-bottom: 10px;
        color: var(--ny-text-3);
        font-size: 12px;
        font-weight: 700;
    }

    .ny-search-products {
        display: grid;
        gap: 10px;
        margin-bottom: 12px;
    }

    .ny-search-product-item {
        padding: 12px;
        background: #f8fafc;
        border-radius: 10px;
    }

    .ny-search-product-title {
        margin-bottom: 4px;
        color: var(--ny-text-1);
        font-weight: 700;
    }

    .ny-search-product-desc {
        color: var(--ny-text-2);
        font-size: 12px;
    }

    .ny-service-search-loading {
        padding: 20px 12px;
        color: var(--ny-text-3);
        font-size: 13px;
        text-align: center;
    }

    .ny-service-search-loading::before {
        content: "";
        display: inline-block;
        width: 14px;
        height: 14px;
        margin-right: 8px;
        border: 2px solid #dbeafe;
        border-top-color: var(--ny-primary);
        border-radius: 50%;
        vertical-align: -2px;
        animation: ny-search-spin .7s linear infinite;
    }

    @keyframes ny-search-spin {
        to { transform: rotate(360deg); }
    }

    .ny-tag-new {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-width: 30px;
        height: 16px;
        padding: 0 4px;
        color: #fff;
        background: var(--ny-danger);
        border-radius: 999px;
        font-size: 10px;
        font-weight: 700;
    }

    .ny-topbar-link,
    .ny-topbar-icon-link {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        height: 32px;
        padding: 0 10px;
        color: #55657a;
        border-radius: 8px;
        font-size: 13px;
        font-weight: 600;
        transition: all .2s ease;
    }

    .ny-topbar-link:hover,
    .ny-topbar-icon-link:hover {
        color: var(--ny-primary);
        background: #f3f7ff;
    }

    .ny-topbar-icon-link {
        position: relative;
        width: 32px;
        padding: 0;
    }

    .ny-topbar-icon-link i,
    .ny-topbar-dropdown-trigger > i:first-child,
    .ny-topbar-user > i,
    .ny-topbar-icon i {
        font-size: 16px;
    }

    .ny-topbar-icon {
        position: relative;
        width: 32px;
        height: 32px;
    }

    .ny-topbar-icon a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 100%;
        color: #55657a;
        border-radius: 8px;
    }

    .ny-topbar-badge {
        position: absolute;
        top: 6px;
        right: 5px;
        width: 8px;
        height: 8px;
        background: var(--ny-danger);
        border: 2px solid #fff;
        border-radius: 999px;
    }

    .ny-topbar-dropdown {
        position: relative;
    }

    .ny-topbar-user-wrapper {
        top: 1px;
    }

    .ny-topbar-dropdown-trigger,
    .ny-topbar-user {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        height: 32px;
        padding: 0 10px;
        color: #55657a;
        border-radius: 8px;
        cursor: pointer;
        transition: all .2s ease;
    }

    .ny-topbar-dropdown-trigger:hover,
    .ny-topbar-user:hover {
        color: var(--ny-primary);
        background: #f3f7ff;
    }

    .ny-topbar-user {
        padding-right: 6px;
    }

    .ny-topbar-avatar {
        width: 26px;
        height: 26px;
        border: 1px solid var(--ny-border);
        border-radius: 999px;
        object-fit: cover;
    }

    .ny-topbar-username {
        max-width: 110px;
        overflow: hidden;
        font-size: 13px;
        font-weight: 700;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .ny-topbar-divider {
        width: 1px;
        height: 20px;
        background: var(--ny-border);
    }

    .ny-topbar-dropdown-menu {
        min-width: 190px;
        padding: 8px;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-8px);
        transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
    }

    .ny-topbar-dropdown.active .ny-topbar-dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .ny-topbar-dropdown-item {
        display: flex;
        align-items: center;
        gap: 10px;
        width: 100%;
        min-height: 40px;
        padding: 0 12px;
        color: var(--ny-text-2);
        background: transparent;
        border: 0;
        border-radius: 10px;
        font-size: 13px;
        font-weight: 600;
        text-align: left;
        cursor: pointer;
        transition: color .18s ease, background-color .18s ease;
    }

    .ny-topbar-dropdown-item i {
        width: 16px;
        color: var(--ny-text-3);
        font-size: 16px;
        text-align: center;
        transition: color .18s ease;
    }

    .ny-topbar-dropdown-item:hover {
        color: var(--ny-primary);
        background: var(--ny-bg-primary-soft);
    }

    .ny-topbar-dropdown-item:hover i {
        color: var(--ny-primary);
    }

    .ny-language-item img {
        width: 16px;
        height: 12px;
        border-radius: 2px;
    }

    .ny-dropdown-divider {
        height: 1px;
        margin: 8px 4px;
        background: var(--ny-border);
    }

    .ny-dropdown-logout,
    .ny-dropdown-logout i {
        color: var(--ny-danger);
    }

    .ny-dropdown-logout:hover {
        background: #fef2f2;
        color: var(--ny-danger);
    }

    .ny-dropdown-logout:hover i {
        color: var(--ny-danger);
    }

    .ny-dropdown-finance {
        min-width: 240px;
    }

    .ny-finance-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 6px 8px 10px;
    }

    .ny-finance-label,
    .ny-finance-unit {
        color: var(--ny-text-3);
        font-size: 12px;
    }

    .ny-finance-recharge {
        color: var(--ny-primary);
        font-size: 12px;
        font-weight: 700;
    }

    .ny-finance-balance {
        padding: 0 8px 10px;
    }

    .ny-finance-amount {
        color: var(--ny-text-1);
        font-size: 24px;
        font-weight: 800;
    }

    .ny-dropdown-logout,
    .ny-dropdown-logout i {
        color: var(--ny-danger) !important;
    }

    .empty-state {
        display: grid;
        justify-items: center;
        gap: 10px;
        padding: 34px 16px;
        color: var(--ny-text-3);
        text-align: center;
    }

    .empty-state-icon {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 54px;
        height: 54px;
        color: var(--ny-primary);
        background: #eef5ff;
        border-radius: 999px;
        font-size: 24px;
    }

    .empty-state-text {
        color: var(--ny-text-2);
        font-weight: 700;
    }

    body.ny-sidebar-collapsed .ny-sidebar {
        width: 76px;
    }

    body.ny-sidebar-collapsed .ny-main {
        margin-left: 76px;
    }

    body.ny-sidebar-collapsed .ny-menu-text,
    body.ny-sidebar-collapsed .ny-menu-arrow {
        display: none;
    }

    body.ny-sidebar-collapsed .ny-menu-link {
        justify-content: center;
        padding: 0;
        width: 48px;
        margin: 0 auto;
    }

    body.ny-sidebar-collapsed .ny-menu-icon {
        margin: 0;
    }

    body.ny-sidebar-collapsed .ny-menu-sub {
        position: absolute;
        top: 0;
        left: 74px;
        width: 214px;
        padding: 8px;
        background: #fff;
        border: 1px solid var(--ny-border);
        border-radius: 12px;
        box-shadow: 0 2px 8px rgba(15, 23, 42, 0.07);
    }

    body.ny-sidebar-collapsed .ny-menu-toggle i {
        transform: rotate(180deg);
    }

    body.ny-sidebar-collapsed .ny-menu-group:hover > .ny-menu-sub {
        max-height: 1000px;
    }

    .ny-sidebar-overlay {
        position: fixed;
        inset: 0;
        background: rgba(15, 23, 42, 0.35);
        z-index: 1000;
    }

    .web_none {
        display: inline-flex;
    }

    @keyframes ny-menu-sub-reveal {
        from {
            opacity: 0;
            clip-path: inset(0 0 100% 0);
            transform: translateY(-8px) scaleY(.94);
        }
        to {
            opacity: 1;
            clip-path: inset(0 0 0 0);
            transform: translateY(0) scaleY(1);
        }
    }

    @keyframes ny-menu-sub-item-in {
        from {
            opacity: 0;
            transform: translateY(-6px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @keyframes ny-rotate {
        from {
            transform: rotate(0deg);
        }
        to {
            transform: rotate(360deg);
        }
    }

    @media (max-width: 1100px) {
        .ny-topbar-search-dropdown {
            min-width: 560px;
        }
    }

    @media (max-width: 992px) {
        .ny-sidebar {
            transform: translateX(-100%);
        }

        .ny-sidebar.show {
            transform: translateX(0);
        }

        .ny-main {
            margin-left: 0;
            padding-top: 64px;
        }

        .ny-topbar,
        #page-topbar.ny-topbar {
            left: 0;
        }

        .ny-topbar-center {
            display: none;
        }

        .ny-topbar-right {
            gap: 8px;
        }

        .ny-topbar-link {
            padding: 0 8px;
        }
    }

    @media (max-width: 768px) {
        .ny-topbar-right-dashboard .ny-topbar-link:nth-child(1),
        .ny-topbar-right-dashboard .ny-topbar-link:nth-child(4),
        .ny-topbar-right-dashboard .ny-topbar-link:nth-child(5),
        .web_none,
        .ny-topbar-username {
            display: none;
        }
    }

    @media (max-width: 560px) {
        .ny-main {
            padding-left: 10px;
            padding-right: 10px;
        }
    }

    body.ny-layout-enterprise > .ny-sidebar {
        position: fixed !important;
        top: 52px !important;
        bottom: 0 !important;
        left: 0 !important;
        width: 228px !important;
        z-index: 1002;
    }

    body.ny-layout-enterprise > .ny-main {
        margin-left: 228px;
    }

    body.ny-layout-enterprise.ny-sidebar-collapsed > .ny-sidebar {
        width: 76px !important;
    }

    body.ny-layout-enterprise.ny-sidebar-collapsed > .ny-main {
        margin-left: 76px;
    }

    @media (max-width: 992px) {
        body.ny-layout-enterprise > .ny-sidebar {
            transform: translateX(-100%);
        }

        body.ny-layout-enterprise > .ny-sidebar.show {
            transform: translateX(0);
        }

        body.ny-layout-enterprise > .ny-main {
            margin-left: 0;
        }
    }
