:root {
  --cn-nav-width: 17rem;
  --cn-nav-collapsed-width: 5.25rem;
  --cn-shell-bg: #f3f6fb;
  --cn-surface: #ffffff;
  --cn-surface-alt: #f8fafc;
  --cn-border: #d9e2ec;
  --cn-border-soft: #e9eef5;
  --cn-text: #14213d;
  --cn-muted: #5f6c7b;
  --cn-shadow: 0 14px 32px rgba(15, 23, 42, 0.08);
  --cn-shadow-soft: 0 10px 24px rgba(15, 23, 42, 0.05);
  --cn-radius: 18px;
  --cn-radius-sm: 12px;
}

body.cn-host {
  min-height: 100vh;
  margin: 0;
  background: linear-gradient(180deg, #f7faff 0%, var(--cn-shell-bg) 100%);
  color: var(--cn-text);
  font-family: "Segoe UI", "Noto Sans", "PingFang SC", "Microsoft YaHei", system-ui, -apple-system, sans-serif;
}

body.cn-host.dark {
  --cn-shell-bg: #0f172a;
  --cn-surface: #111c31;
  --cn-surface-alt: #0b1426;
  --cn-border: #1f2a3b;
  --cn-border-soft: #1b2432;
  --cn-text: #e5edf7;
  --cn-muted: #9aacbf;
  --cn-shadow: 0 18px 36px rgba(2, 6, 23, 0.35);
  --cn-shadow-soft: 0 12px 28px rgba(2, 6, 23, 0.3);
  background: linear-gradient(180deg, #0f172a 0%, #111c31 100%);
}

body.cn-host a {
  color: #1768ac;
  text-decoration: none;
}

body.cn-host a:hover {
  color: #0e4f85;
}

body.cn-host img[loading="lazy"],
body.cn-host .main-nav img {
  content-visibility: auto;
}

body.cn-host .app-wrapper {
  min-height: 100vh;
}

body.cn-host nav {
  position: fixed;
  inset: 0 auto 0 0;
  z-index: 1032;
  width: var(--cn-nav-width);
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  border-right: 1px solid var(--cn-border);
  box-shadow: var(--cn-shadow-soft);
  transition: width 0.22s ease, transform 0.22s ease;
}

body.cn-host.dark nav {
  background: rgba(17, 28, 49, 0.96);
}

body.cn-host nav .app-logo {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 72px;
  padding: 18px 18px 14px;
  border-bottom: 1px solid var(--cn-border-soft);
}

body.cn-host nav .app-logo .logo {
  display: inline-flex;
  align-items: center;
}

body.cn-host nav .app-logo .logo img {
  width: 35px;
  height: 35px;
}

body.cn-host .header-toggle {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid var(--cn-border);
  background: var(--cn-surface-alt);
  color: var(--cn-text);
  cursor: pointer;
}

body.cn-host nav .app-nav {
  flex: 1 1 auto;
  min-height: 0;
  padding: 8px 10px 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow: visible;
}

body.cn-host .cn-nav-scroll {
  flex: 1 1 auto;
  min-height: 0;
}

body.cn-host #app-simple-bar {
  flex: 1 1 auto;
  min-height: 0;
  max-height: none;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding-bottom: 12px;
  scrollbar-width: thin;
}

body.cn-host .main-nav {
  list-style: none;
  margin: 0;
}

body.cn-host .main-nav hr {
  margin: 14px 0;
  border-color: var(--cn-border-soft);
}

body.cn-host .main-nav > li {
  margin: 0 0 6px;
}

body.cn-host .main-nav > li > a {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 46px;
  padding: 0.7rem 0.95rem;
  border-radius: 14px;
  color: var(--cn-text);
  transition: background-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

body.cn-host .main-nav > li > a:hover,
body.cn-host .main-nav > li > a.active {
  background: #e8f1fb;
  color: #1768ac;
}

body.cn-host.dark .main-nav > li > a:hover,
body.cn-host.dark .main-nav > li > a.active {
  background: rgba(23, 104, 172, 0.16);
  color: #7fc0ff;
}

body.cn-host .main-nav > li > a i {
  width: 18px;
  text-align: center;
  font-size: 1rem;
  flex: 0 0 18px;
}

body.cn-host .main-nav .menu-title {
  margin-top: 16px;
  padding: 0 12px;
  color: var(--cn-muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body.cn-host .main-nav .menu-title span {
  display: block;
  padding: 8px 0 4px;
}

body.cn-host .menu-counter-badge {
  margin-left: auto;
  min-width: 24px;
  padding: 2px 8px;
  border-radius: 999px;
  background: #dbeafe;
  color: #1d4ed8;
  font-size: 0.75rem;
  font-weight: 700;
  text-align: center;
}

body.cn-host .menu-counter-badge.is-zero {
  background: #e2e8f0;
  color: #64748b;
}

body.cn-host .menu-navs {
  display: none;
}

body.cn-host .app-content {
  min-width: 0;
  padding-left: var(--cn-nav-width);
}

body.cn-host nav.semi-nav {
  width: var(--cn-nav-collapsed-width);
}

body.cn-host nav.semi-nav ~ .app-content {
  padding-left: var(--cn-nav-collapsed-width);
}

body.cn-host nav.semi-nav .main-nav .menu-text,
body.cn-host nav.semi-nav .main-nav .menu-counter-badge,
body.cn-host nav.semi-nav .main-nav .menu-title span {
  display: none;
}

body.cn-host nav.semi-nav .main-nav > li > a {
  justify-content: center;
  padding-inline: 0.5rem;
}

body.cn-host .app-content-body,
body.cn-host .container-fluid {
  min-width: 0;
}

body.cn-host header.header-main {
  position: sticky;
  top: 0;
  z-index: 1025;
  padding: 8px 10px 0 !important;
  background: transparent;
}

body.cn-host header.header-main .container-fluid {
  padding: 6px 10px !important;
  border-radius: 12px;
  border: 1px solid var(--cn-border);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
  box-shadow: var(--cn-shadow-soft);
}

body.cn-host nav ~ .app-content header.header-main,
body.cn-host .app-wrapper nav.semi-nav ~ .app-content header.header-main {
  padding-left: 10px !important;
}

body.cn-host.dark header.header-main .container-fluid {
  background: rgba(17, 28, 49, 0.92);
}

body.cn-host .header-left,
body.cn-host .header-right {
  min-width: 0;
}

body.cn-host header.header-main .container-fluid > .row {
  align-items: center;
}

body.cn-host .header-right ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

body.cn-host .header-right li {
  margin-right: 4px;
}

body.cn-host .head-icon {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid var(--cn-border);
  background: var(--cn-surface-alt);
  color: var(--cn-text);
}

body.cn-host .head-icon:hover {
  background: #e8f1fb;
}

body.cn-host.dark .head-icon:hover {
  background: rgba(23, 104, 172, 0.16);
}

body.cn-host .cn-compact-header {
  display: none;
}

body.cn-host .cn-compact-header .container-fluid {
  min-height: 44px;
}

body.cn-host .cn-mobile-header-label {
  color: var(--cn-muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body.cn-host .cn-nav-tools {
  flex: 0 0 auto;
  padding-top: 12px;
  border-top: 1px solid var(--cn-border-soft);
}

body.cn-host .cn-nav-toolbar {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

body.cn-host .cn-nav-toolbar-item {
  min-width: 0;
}

body.cn-host .cn-nav-toolbar-item .head-icon {
  width: 100%;
  min-height: 44px;
  height: auto;
  justify-content: flex-start;
  gap: 10px;
  padding: 0.7rem 0.9rem;
  border-radius: 14px;
}

body.cn-host .cn-nav-toolbar-item .head-icon i {
  width: 18px;
  text-align: center;
  flex: 0 0 18px;
}

body.cn-host .cn-nav-toolbar-item .head-icon-label {
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.1;
}

body.cn-host .cn-nav-toolbar-item .notification-dot {
  top: 10px;
  right: 10px;
}

body.cn-host .cn-nav-toolbar .notification-dropdown {
  z-index: 1060;
}

body.cn-host .cn-nav-balance {
  margin-top: 12px;
}

body.cn-host .cn-nav-balance .header-balance-pill {
  width: 100%;
  justify-content: space-between;
  gap: 10px;
  padding-right: 4px;
}

body.cn-host .cn-nav-balance-values {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

body.cn-host .cn-nav-profile-card {
  margin-top: 12px;
  padding: 14px;
  border: 1px solid var(--cn-border);
  border-radius: 16px;
  background: var(--cn-surface);
  box-shadow: var(--cn-shadow-soft);
}

body.cn-host .cn-nav-profile-head {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

body.cn-host .cn-nav-profile-avatar {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  object-fit: cover;
  flex: 0 0 42px;
  border: 1px solid var(--cn-border-soft);
}

body.cn-host .cn-nav-profile-copy {
  min-width: 0;
}

body.cn-host .cn-nav-profile-name {
  color: var(--cn-text);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.1;
}

body.cn-host .cn-nav-profile-meta {
  margin-top: 4px;
  color: var(--cn-muted);
  font-size: 0.72rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

body.cn-host .cn-nav-profile-code {
  display: inline-flex;
  align-items: center;
  margin-top: 8px;
  padding: 3px 8px;
  border-radius: 999px;
  background: var(--cn-surface-alt);
  color: var(--cn-muted);
  font-size: 0.72rem;
  font-weight: 700;
}

body.cn-host .cn-nav-profile-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 12px;
}

body.cn-host .cn-nav-profile-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 12px;
  border-radius: 12px;
  border: 1px solid var(--cn-border);
  background: var(--cn-surface-alt);
  color: var(--cn-text);
  font-size: 0.82rem;
  font-weight: 600;
}

body.cn-host .cn-nav-profile-link:hover {
  background: #e8f1fb;
  color: #1768ac;
}

body.cn-host.dark .cn-nav-profile-link:hover {
  background: rgba(23, 104, 172, 0.16);
  color: #7fc0ff;
}

body.cn-host .page-content-area {
  padding: 20px 18px 28px;
}

body.cn-host .main-title {
  margin: 0;
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--cn-text);
}

body.cn-host .app-line-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 18px;
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

body.cn-host .app-line-breadcrumbs li {
  position: relative;
  color: var(--cn-muted);
}

body.cn-host .app-line-breadcrumbs li + li::before {
  content: "/";
  position: absolute;
  left: -12px;
  color: #9fb0c1;
}

body.cn-host .app-line-breadcrumbs li.active a,
body.cn-host .app-line-breadcrumbs li.active {
  color: var(--cn-muted);
}

body.cn-host .card {
  border: 1px solid var(--cn-border);
  border-radius: var(--cn-radius);
  background: var(--cn-surface);
  box-shadow: var(--cn-shadow-soft);
}

body.cn-host .card-header,
body.cn-host .card-body,
body.cn-host .card-footer {
  border-color: var(--cn-border-soft);
}

body.cn-host .card-header {
  background: transparent;
  padding: 1rem 1.25rem;
}

body.cn-host .card-body {
  padding: 1.25rem;
}

body.cn-host .table-responsive {
  -webkit-overflow-scrolling: touch;
}

body.cn-host .table {
  --bs-table-bg: transparent;
  margin-bottom: 0;
  vertical-align: middle;
}

body.cn-host .table > :not(caption) > * > * {
  padding: 0.8rem 0.75rem;
  border-bottom-color: var(--cn-border-soft);
}

body.cn-host .table thead th {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--cn-muted);
  text-transform: uppercase;
}

body.cn-host .table-striped > tbody > tr:nth-of-type(odd) > * {
  --bs-table-accent-bg: rgba(15, 23, 42, 0.018);
}

body.cn-host.dark .table-striped > tbody > tr:nth-of-type(odd) > * {
  --bs-table-accent-bg: rgba(255, 255, 255, 0.02);
}

body.cn-host .header-balance-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 32px;
  padding: 0 0 0 10px;
  border-radius: 999px;
  border: 1px solid var(--cn-border);
  background: var(--cn-surface-alt);
  color: var(--cn-text);
  font-weight: 600;
  font-size: 0.78rem;
  line-height: 1;
  white-space: nowrap;
}

body.cn-host .header-balance-pill .balance-sep {
  color: #94a3b8;
}

body.cn-host .header-balance-pill .balance-amount {
  font-variant-numeric: tabular-nums;
}

body.cn-host .header-balance-pill .balance-plus {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: none;
  background: #22c55e;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 16px rgba(34, 197, 94, 0.25);
  transition: background 0.2s ease, transform 0.2s ease;
}

body.cn-host .header-balance-pill .balance-plus:hover,
body.cn-host .header-balance-pill .balance-plus:focus {
  background: #16a34a;
  color: #fff;
  transform: translateY(-1px);
}

body.cn-host .notification-dropdown {
  width: 320px;
  max-width: 90vw;
  border-radius: 16px;
  border: 1px solid var(--cn-border);
  background: var(--cn-surface);
  box-shadow: var(--cn-shadow);
  overflow: hidden;
}

body.cn-host .notification-header {
  padding: 10px 14px;
  border-bottom: 1px solid var(--cn-border-soft);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

body.cn-host .notification-body {
  max-height: 320px;
  overflow: auto;
}

body.cn-host .notification-cta {
  padding: 10px 14px;
  border-bottom: 1px solid var(--cn-border-soft);
  background: var(--cn-surface-alt);
}

body.cn-host .notification-cta-btn {
  white-space: normal;
  text-align: left;
  line-height: 1.35;
}

body.cn-host .notification-cta-link {
  display: block;
  margin-top: 6px;
  font-size: 11px;
  color: var(--cn-muted);
}

body.cn-host .notification-item {
  display: flex;
  gap: 12px;
  padding: 10px 14px;
  border-bottom: 1px solid var(--cn-border-soft);
}

body.cn-host .notification-item:last-child {
  border-bottom: none;
}

body.cn-host .notification-item.is-unread {
  background: #f8fafc;
}

body.cn-host.dark .notification-item.is-unread {
  background: rgba(255, 255, 255, 0.025);
}

body.cn-host .notification-icon {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

body.cn-host .notification-icon--info {
  background: #eef2ff;
  color: #4338ca;
}

body.cn-host .notification-icon--success {
  background: #ecfdf3;
  color: #16a34a;
}

body.cn-host .notification-icon--warning {
  background: #fff7ed;
  color: #f97316;
}

body.cn-host .notification-icon--danger {
  background: #fef2f2;
  color: #dc2626;
}

body.cn-host .notification-title {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--cn-muted);
  font-weight: 700;
}

body.cn-host .notification-text {
  font-size: 13px;
  color: var(--cn-text);
  line-height: 1.35;
}

body.cn-host .notification-time {
  font-size: 11px;
  color: #94a3b8;
}

body.cn-host .notification-pill {
  display: inline-flex;
  align-items: center;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-right: 6px;
  border: 1px solid transparent;
  color: inherit;
}

body.cn-host .notification-pill--order {
  background: #e0e7ff;
  color: #3730a3;
  border-color: #c7d2fe;
}

body.cn-host .notification-pill--package {
  background: #dcfce7;
  color: #166534;
  border-color: #bbf7d0;
}

body.cn-host .notification-pill--return {
  background: #fff7ed;
  color: #9a3412;
  border-color: #fed7aa;
}

body.cn-host .notification-pill--other {
  background: #e2e8f0;
  color: #334155;
  border-color: #cbd5e1;
}

body.cn-host .notification-empty {
  padding: 18px 14px;
  text-align: center;
  color: #94a3b8;
}

body.cn-host .notification-dot {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ef4444;
  box-shadow: 0 0 0 2px var(--cn-surface);
}

body.cn-host .header-profile-canvas .offcanvas-body {
  padding: 1rem;
}

body.cn-host .header-profile > .head-icon {
  padding: 2px;
  overflow: hidden;
}

body.cn-host .header-profile > .head-icon img {
  width: 28px !important;
  height: 28px !important;
  display: block;
  object-fit: cover;
  border-radius: 8px !important;
}

body.cn-host .header-profile-canvas ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

body.cn-host .header-profile-canvas li {
  padding: 0.35rem 0;
}

body.cn-host .header-profile-canvas a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--cn-text);
}

body.cn-host .loader-wrapper {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  place-items: center;
  background: rgba(246, 246, 246, 0.92);
}

body.cn-host.dark .loader-wrapper {
  background: rgba(15, 23, 42, 0.88);
}

body.cn-host .loader_16 {
  width: 42px;
  height: 42px;
  border: 4px solid rgba(23, 104, 172, 0.16);
  border-top-color: #1768ac;
  border-radius: 50%;
  animation: cn-spin 0.8s linear infinite;
}

body.cn-host .go-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 1021;
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  padding: 3px;
  box-shadow: var(--cn-shadow-soft);
  cursor: pointer;
}

body.cn-host .go-top .progress-value {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--cn-surface);
  color: var(--cn-text);
}

body.cn-host .app-scroll {
  overflow: auto;
  scrollbar-width: thin;
}

body.cn-host .d-flex-center {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

body.cn-host .icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

body.cn-host .dashed-1-secondary {
  border-top: 1px dashed var(--cn-border-soft) !important;
}

body.cn-host .app-divider-v.dotted {
  border-top: 1px dotted var(--cn-border-soft);
}

body.cn-host .f-s-10 {
  font-size: 0.625rem !important;
}

body.cn-host .f-s-12 {
  font-size: 0.75rem !important;
}

body.cn-host .f-s-13 {
  font-size: 0.8125rem !important;
}

body.cn-host .f-s-14 {
  font-size: 0.875rem !important;
}

body.cn-host .f-s-15 {
  font-size: 0.9375rem !important;
}

body.cn-host .f-s-16 {
  font-size: 1rem !important;
}

body.cn-host .f-s-18 {
  font-size: 1.125rem !important;
}

body.cn-host .f-s-20 {
  font-size: 1.25rem !important;
}

body.cn-host .f-w-500 {
  font-weight: 500 !important;
}

body.cn-host .f-w-600 {
  font-weight: 600 !important;
}

body.cn-host .f-w-700 {
  font-weight: 700 !important;
}

body.cn-host .b-r-10 {
  border-radius: 10px !important;
}

body.cn-host .b-r-15 {
  border-radius: 15px !important;
}

body.cn-host .b-r-20 {
  border-radius: 20px !important;
}

body.cn-host .h-35 {
  height: 35px !important;
}

body.cn-host .w-35 {
  width: 35px !important;
}

body.cn-host .h-45 {
  height: 45px !important;
}

body.cn-host .w-45 {
  width: 45px !important;
}

body.cn-host footer {
  padding: 0 18px 18px;
  color: var(--cn-muted);
}

body.cn-host footer .container-fluid {
  padding: 0.9rem 1.1rem;
  border: 1px solid var(--cn-border);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--cn-shadow-soft);
}

body.cn-host.dark footer .container-fluid {
  background: rgba(17, 28, 49, 0.92);
}

@keyframes cn-spin {
  to {
    transform: rotate(360deg);
  }
}

@media (min-width: 992px) {
  body.cn-host nav.semi-nav .cn-nav-tools {
    display: none;
  }
}

@media (max-width: 991.98px) {
  body.cn-host.mobile-sidebar-open {
    overflow: hidden;
    overscroll-behavior: contain;
  }

  body.cn-host .sidebar-mobile-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    border: 0;
    margin: 0;
    padding: 0;
    background: rgba(15, 23, 42, 0.56);
    opacity: 0;
    pointer-events: none;
    z-index: 1031;
    transition: opacity 0.22s ease;
    -webkit-tap-highlight-color: transparent;
    -webkit-appearance: none;
    appearance: none;
  }

  body.cn-host.mobile-sidebar-open .sidebar-mobile-backdrop {
    opacity: 1;
    pointer-events: auto;
  }

  body.cn-host .cn-compact-header {
    display: block;
  }

  body.cn-host nav {
    visibility: hidden;
    transform: translateX(-105%);
    width: min(17rem, calc(100vw - 32px));
    pointer-events: none;
  }

  body.cn-host.mobile-sidebar-open nav,
  body.cn-host.mobile-sidebar-open nav:hover,
  body.cn-host nav.sidebar-mobile-open {
    width: min(17rem, calc(100vw - 32px));
    visibility: visible;
    transform: translateX(0);
    pointer-events: auto;
  }

  body.cn-host.mobile-sidebar-open nav ~ .app-content,
  body.cn-host.mobile-sidebar-open .app-content,
  body.cn-host nav.sidebar-mobile-open ~ .app-content,
  body.cn-host .app-content {
    padding-left: 0;
  }

  body.cn-host.mobile-sidebar-open nav .main-nav .menu-text,
  body.cn-host.mobile-sidebar-open nav .main-nav .menu-counter-badge,
  body.cn-host.mobile-sidebar-open nav .main-nav .menu-title span,
  body.cn-host nav.sidebar-mobile-open .main-nav .menu-text,
  body.cn-host nav.sidebar-mobile-open .main-nav .menu-counter-badge,
  body.cn-host nav.sidebar-mobile-open .main-nav .menu-title span {
    display: initial;
  }

  body.cn-host.mobile-sidebar-open nav .main-nav > li > a,
  body.cn-host nav.sidebar-mobile-open .main-nav > li > a {
    justify-content: flex-start;
    padding-inline: 0.95rem;
  }
}

@media (max-width: 767.98px) {
  body.cn-host #app-simple-bar {
    max-height: none;
    padding-bottom: 16px;
  }

  body.cn-host header.header-main,
  body.cn-host .page-content-area,
  body.cn-host footer {
    padding-inline: 12px;
  }

  body.cn-host header.header-main .container-fluid,
  body.cn-host footer .container-fluid,
  body.cn-host .card {
    border-radius: 16px;
  }

  body.cn-host .header-balance-pill {
    min-height: 30px;
    font-size: 0.74rem;
  }

  body.cn-host .header-balance-pill .balance-plus {
    width: 30px;
    height: 30px;
  }

  body.cn-host .notification-dropdown {
    width: min(320px, calc(100vw - 24px));
  }
}
