﻿/* WeChat-Ai bot 璇︽儏椤?鈥?绉诲姩绔紭鍏堬紝瀵归綈鍙傝€冩埅鍥?*/

:root {
  --bot-bg: #faf9ff;
  --bot-card: #ffffff;
  --bot-text: #3f3f46;
  --bot-muted: #71717a;
  --bot-border: rgba(237, 233, 254, 0.72);
  --bot-dark: #7c3aed;
  --bot-dark-hover: #6d28d9;
  --bot-accent: #7c3aed;
  --bot-accent-hover: #6d28d9;
  --bot-accent-soft: rgba(124, 58, 237, 0.06);
  --bot-btn-bg: rgba(255, 255, 255, 0.88);
  --bot-btn-text: #3f3f46;
  --bot-grad: linear-gradient(135deg, #a78bfa 0%, #7c3aed 100%);
  --bot-btn-grad: linear-gradient(135deg, #a78bfa 0%, #7c3aed 100%);
  --bot-btn-hover: linear-gradient(135deg, #8b5cf6 0%, #6d28d9 100%);
  --bot-btn-shadow: rgba(124, 58, 237, 0.24);
  --bot-shadow: rgba(124, 58, 237, 0.14);
  --bot-green-bg: #ecfdf5;
  --bot-green-text: #059669;
  --bot-green-border: rgba(16, 185, 129, 0.22);
  --bot-radius-lg: 24px;
  --bot-radius-md: 18px;
  --bot-radius-sm: 14px;
  --bot-gap: 16px;
  --bot-gap-sm: 12px;
  --bot-page-x: 16px;
  --bot-shadow-sm: 0 2px 12px rgba(63, 63, 70, 0.03);
  --bot-shadow-md: 0 6px 22px rgba(124, 58, 237, 0.045);
  --bot-shadow-lg: 0 10px 30px rgba(124, 58, 237, 0.06);
  --bot-ease: cubic-bezier(0.25, 0.8, 0.45, 1);
  --bot-ease-soft: cubic-bezier(0.33, 1, 0.48, 1);
}

html.bot-dash-root.page-landing-root {
  --bot-text: #3f3f46;
  --bot-btn-text: #3f3f46;
  --bot-dark: #7c3aed;
  --bot-dark-hover: #6d28d9;
  --bot-accent: #7c3aed;
  --bot-accent-hover: #6d28d9;
  --bot-border: #ede9fe;
}

html.bot-dash-root {
  background: transparent !important;
  background-color: transparent !important;
}

html.bot-dash-root body {
  background: transparent !important;
  color: var(--bot-text);
  font-family: 'Manrope', 'Noto Sans SC', -apple-system, BlinkMacSystemFont, 'PingFang SC', sans-serif;
  -webkit-font-smoothing: antialiased;
}

html.bot-dash-root:has(.bot-dash) {
  overflow: hidden;
  height: 100%;
}

html.bot-dash-root:has(.bot-dash) body {
  overflow: hidden;
  height: 100%;
}

.bot-dash.ss-dashboard {
  height: 100dvh;
  max-height: 100dvh;
  min-height: 0;
  overflow: hidden;
  background: transparent;
}

.bot-dash .ss-content-col {
  display: flex;
  flex-direction: column;
  min-height: 0;
  height: 100dvh;
  overflow: hidden;
}

/* ===== 顶栏（对齐落地页 ss-nav 胶囊风格） ===== */
.bot-dash-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-shrink: 0;
  margin: max(10px, env(safe-area-inset-top)) var(--bot-page-x) 0;
  padding: 6px 6px 6px 14px;
  border-radius: 999px;
  border: 1px solid var(--bot-border);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--bot-shadow-sm);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: box-shadow 0.35s var(--bot-ease-soft);
}

.bot-dash-top__brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  text-decoration: none;
  color: var(--bot-text);
}

.bot-dash-top__mark {
  width: 28px;
  height: 28px;
  border-radius: 9px;
  background: var(--bot-grad);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
  box-shadow: 0 4px 12px var(--bot-shadow);
}

.bot-dash-top__name {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.02em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: var(--bot-text);
}

.bot-dash-menu-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 36px;
  padding: 0 12px;
  border: 1px solid var(--bot-border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  color: var(--bot-text);
  font-size: 14px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  flex-shrink: 0;
  box-shadow: none;
  transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  position: relative;
  z-index: 52;
}

.bot-dash-menu-btn:active {
  transform: scale(0.96);
  background: var(--bot-accent-soft);
  color: var(--bot-dark);
}

.bot-dash-menu-btn[aria-expanded="true"] {
  background: var(--bot-accent-soft);
  color: var(--bot-dark);
  border-color: rgba(124, 58, 237, 0.2);
}

.bot-dash-menu-btn__label {
  line-height: 1;
}

.bot-dash-drawer-backdrop {
  position: fixed;
  inset: 0;
  z-index: 48;
  background: rgba(63, 63, 70, 0.38);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease;
}

.bot-dash-drawer-backdrop:not([hidden]) {
  opacity: 1;
  pointer-events: auto;
}

html.bot-drawer-lock,
html.bot-drawer-lock body {
  overflow: hidden !important;
  touch-action: none;
}

@media (min-width: 769px) {
  .bot-dash-menu-btn,
  .bot-dash-sidebar__close,
  .bot-dash-drawer-backdrop {
    display: none !important;
  }
}

.bot-dash-sidebar {
  display: flex;
  flex-direction: column;
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  z-index: 50;
  width: min(300px, 86vw);
  height: 100dvh;
  max-height: 100dvh;
  background: rgba(255, 255, 255, 0.98);
  border-right: 1px solid var(--bot-border);
  box-shadow: 8px 0 40px rgba(63, 63, 70, 0.12);
  transform: translateX(-105%);
  transition: transform 0.34s cubic-bezier(0.22, 1, 0.36, 1);
  padding-bottom: env(safe-area-inset-bottom, 0px);
  overflow: hidden;
}

.bot-dash.drawer-open .bot-dash-sidebar {
  transform: translateX(0);
}

.bot-dash.drawer-open .ss-content-col {
  overflow: hidden;
  touch-action: none;
}

.bot-dash-sidebar__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: max(14px, env(safe-area-inset-top)) 16px 12px;
  border-bottom: 1px solid rgba(232, 223, 212, 0.8);
  flex-shrink: 0;
}

.bot-dash-sidebar__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  font-size: 16px;
  font-weight: 700;
  color: var(--bot-text);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.bot-dash-sidebar__mark {
  width: 34px;
  height: 34px;
  border-radius: 11px;
  background: var(--bot-grad);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
  box-shadow: 0 4px 12px var(--bot-shadow);
}

.bot-dash-sidebar__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid var(--bot-border);
  border-radius: 12px;
  background: var(--bot-card);
  color: var(--bot-text);
  cursor: pointer;
  flex-shrink: 0;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.bot-dash-sidebar__close:active {
  background: #f3f4f6;
}

.bot-dash-sidebar__menu {
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.bot-dash-sidebar__link {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 48px;
  padding: 12px 14px;
  border-radius: 14px;
  color: #57534e;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: background 0.18s ease, color 0.18s ease;
  -webkit-tap-highlight-color: transparent;
}

.bot-dash-sidebar__link:active {
  background: #f3f4f6;
}

.bot-dash-sidebar__link.is-active {
  background: var(--bot-accent-soft);
  color: var(--bot-dark);
  font-weight: 600;
}

.bot-dash-sidebar__icon {
  width: 20px;
  text-align: center;
  font-size: 14px;
  flex-shrink: 0;
}

.bot-dash-sidebar__foot {
  padding: 14px 16px calc(16px + env(safe-area-inset-bottom, 0px));
  border-top: 1px solid var(--bot-border);
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.98);
}

.bot-dash-sidebar__user {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid var(--bot-border);
  background: #fff;
}

.bot-dash-sidebar__user--static {
  cursor: default;
}

.bot-dash-sidebar__avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--bot-grad);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
}

.bot-dash-sidebar__meta {
  display: flex;
  flex-direction: column;
  min-width: 0;
  gap: 2px;
}

.bot-dash-sidebar__meta strong {
  font-size: 12px;
  font-weight: 600;
  color: var(--bot-text);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.bot-dash-sidebar__meta span {
  font-size: 11px;
  color: var(--bot-dark);
  font-weight: 500;
}

/* ===== 主内容 ===== */
.bot-dash-main.ss-main {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  padding: 12px var(--bot-page-x) calc(76px + env(safe-area-inset-bottom, 0px));
  display: flex;
  flex-direction: column;
  gap: var(--bot-gap);
}

.bot-dash-grid {
  display: flex;
  flex-direction: column;
  gap: var(--bot-gap);
}

.bot-dash-grid__primary,
.bot-dash-grid__secondary {
  display: flex;
  flex-direction: column;
  gap: var(--bot-gap);
  min-width: 0;
}

/* ===== 入场动画（轻柔） ===== */
@keyframes bot-enter-rise {
  from {
    opacity: 0;
    transform: translate3d(0, 10px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes bot-chart-draw {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes bot-chart-fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.bot-enter {
  opacity: 0;
  animation: bot-enter-rise 0.9s var(--bot-ease-soft) both;
  animation-delay: var(--bot-enter-delay, 0s);
}

.bot-profile-card,
.bot-stat-card,
.bot-chart-card {
  transition: transform 0.4s var(--bot-ease-soft), box-shadow 0.4s var(--bot-ease-soft);
}

@media (prefers-reduced-motion: reduce) {
  .bot-enter {
    opacity: 1 !important;
    animation: none !important;
    transform: none !important;
  }

  .bot-chart-svg polyline,
  .bot-chart-svg circle,
  .bot-chart-svg path {
    animation: none !important;
    stroke-dashoffset: 0 !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ===== 资料卡片 ===== */
.bot-profile-card {
  background: rgba(255, 255, 255, 0.86);
  border-radius: var(--bot-radius-lg);
  border: 1px solid var(--bot-border);
  box-shadow: var(--bot-shadow-md);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 20px 18px 18px;
}

.bot-profile-card__head {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 4px;
}

.bot-profile-card__name {
  margin: 0;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--bot-text);
  line-height: 1.2;
}

.bot-profile-card__badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--bot-green-bg);
  color: var(--bot-green-text);
  border: 1px solid var(--bot-green-border);
  font-size: 11px;
  font-weight: 600;
}

.bot-profile-card__sub {
  margin: 0 0 14px;
  font-size: 14px;
  color: var(--bot-muted);
  line-height: 1.4;
}

.bot-profile-card__back {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  border-radius: 999px;
  background: #f3f4f6;
  border: 1px solid rgba(28, 25, 23, 0.06);
  color: #57534e;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.15s ease;
}

.bot-profile-card__back:active {
  background: #e8e5e1;
}

/* ===== 鍔熻兘鎸夐挳 2脳3 ===== */
.bot-action-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--bot-gap-sm);
}

.bot-action-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 14px;
  border-radius: 999px;
  border: 1px solid var(--bot-border);
  background: var(--bot-btn-bg);
  color: var(--bot-btn-text);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  font-family: inherit;
  box-shadow: none;
  transition: background 0.3s var(--bot-ease-soft), color 0.3s var(--bot-ease-soft), transform 0.35s var(--bot-ease-soft), box-shadow 0.35s var(--bot-ease-soft);
  -webkit-tap-highlight-color: transparent;
}

.bot-action-btn:active {
  transform: scale(0.99);
}

.bot-action-btn.is-active {
  background: var(--bot-btn-grad);
  color: #fff;
  border-color: transparent;
  font-weight: 600;
  box-shadow: 0 4px 16px var(--bot-btn-shadow);
}

/* ===== 缁熻 2脳2 ===== */
.bot-stat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--bot-gap-sm);
}

.bot-stat-card {
  background: rgba(255, 255, 255, 0.84);
  border-radius: var(--bot-radius-md);
  border: 1px solid var(--bot-border);
  box-shadow: var(--bot-shadow-sm);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 15px 14px 13px;
  min-height: 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.bot-stat-card__label {
  display: block;
  font-size: 12px;
  color: var(--bot-muted);
  margin-bottom: 4px;
  line-height: 1.3;
}

.bot-stat-card__value {
  display: block;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--bot-text);
  line-height: 1.2;
}

/* ===== 鍥捐〃鍗＄墖 ===== */
.bot-chart-card {
  background: rgba(255, 255, 255, 0.86);
  border-radius: var(--bot-radius-lg);
  border: 1px solid var(--bot-border);
  box-shadow: var(--bot-shadow-md);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 18px 16px 14px;
}

.bot-chart-card__title {
  margin: 0 0 10px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--bot-text);
}

.bot-chart-card__canvas {
  width: 100%;
  height: 120px;
  overflow: hidden;
}

.bot-chart-svg {
  display: block;
  width: 100%;
  height: 100%;
}

.bot-chart-svg polyline {
  stroke-dasharray: 520;
  stroke-dashoffset: 520;
  animation: bot-chart-draw 1.6s var(--bot-ease-soft) forwards;
  animation-delay: calc(var(--bot-enter-delay, 0s) + 0.3s);
}

.bot-chart-svg path {
  opacity: 0;
  animation: bot-chart-fade 1.2s var(--bot-ease-soft) forwards;
  animation-delay: calc(var(--bot-enter-delay, 0s) + 0.4s);
}

.bot-chart-svg circle {
  opacity: 0;
  animation: bot-chart-fade 0.9s var(--bot-ease-soft) forwards;
  animation-delay: calc(var(--bot-enter-delay, 0s) + 1.1s);
}

/* ===== 移动端底部导航 ===== */
.bot-dash-bottom-nav {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 46;
  align-items: stretch;
  gap: 4px;
  padding: 6px 10px calc(6px + env(safe-area-inset-bottom, 0px));
  background: rgba(255, 255, 255, 0.9);
  border-top: 1px solid var(--bot-border);
  box-shadow: 0 -4px 20px rgba(124, 58, 237, 0.04);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.bot-dash-bottom-nav__item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  min-height: 52px;
  padding: 4px 2px;
  border: none;
  border-radius: 14px;
  background: transparent;
  color: var(--bot-muted);
  font-family: inherit;
  font-size: 10px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  transition: color 0.28s var(--bot-ease-soft), background 0.28s var(--bot-ease-soft), transform 0.2s var(--bot-ease-soft);
}

.bot-dash-bottom-nav__item:active {
  transform: scale(0.97);
}

.bot-dash-bottom-nav__item.is-active {
  color: var(--bot-dark);
  font-weight: 600;
  background: var(--bot-accent-soft);
}

.bot-dash-bottom-nav__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  line-height: 1;
}

.bot-dash-bottom-nav__label {
  line-height: 1.1;
  letter-spacing: 0.01em;
}

@media (max-width: 768px) {
  .bot-dash-bottom-nav {
    display: flex;
  }
}

/* ===== Toast ===== */
html.bot-dash-root .toast {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  background: rgba(28, 28, 30, 0.88);
  color: #fff;
  padding: 14px 28px;
  border-radius: 14px;
  font-size: 14px;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: all 0.25s;
  backdrop-filter: blur(8px);
}

html.bot-dash-root .toast.show {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

/* ===== PC 端布局 ===== */
@media (min-width: 769px) {
  html.bot-dash-root:has(.bot-dash) {
    overflow: auto;
    height: auto;
  }

  html.bot-dash-root:has(.bot-dash) body {
    overflow: auto;
    height: auto;
  }

  .bot-dash.ss-dashboard {
    display: flex;
    flex-direction: row;
    height: 100vh;
    max-height: none;
    min-height: 100vh;
    overflow: hidden;
  }

  .bot-dash-sidebar {
    display: flex;
    flex-direction: column;
    width: 248px;
    flex-shrink: 0;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    border-right: 1px solid var(--bot-border);
    box-shadow: 4px 0 24px rgba(63, 63, 70, 0.03);
    position: sticky;
    top: 0;
    z-index: 40;
    transform: none;
    transition: none;
    padding-bottom: 0;
    overflow: hidden;
  }

  .bot-dash-sidebar__head {
    padding: 24px 20px 14px;
    border-bottom: none;
  }

  .bot-dash-sidebar__link:hover {
    background: var(--bot-accent-soft);
    color: var(--bot-dark);
  }

  .bot-dash-sidebar__link.is-active {
    background: var(--bot-accent-soft);
    color: var(--bot-dark);
  }

  .bot-dash-sidebar__foot {
    padding: 16px;
    background: transparent;
  }

  .bot-dash .ss-content-col {
    flex: 1;
    min-width: 0;
    height: 100vh;
    max-width: none;
    margin: 0;
    border: none;
    box-shadow: none;
    overflow: hidden;
  }

  .bot-dash-top {
    margin: 0;
    padding: 18px 28px 14px;
    border-radius: 0;
    border: none;
    border-bottom: 1px solid var(--bot-border);
    box-shadow: none;
    background: rgba(255, 255, 255, 0.98);
  }

  .bot-dash-top__name {
    font-size: 17px;
  }

  .bot-dash-main.ss-main {
    padding: 20px 28px 36px;
    gap: 20px;
    max-width: 1080px;
  }

  .bot-dash-bottom-nav {
    display: none !important;
  }

  .bot-dash-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
    gap: 20px;
    align-items: start;
  }

  .bot-dash-grid__primary,
  .bot-dash-grid__secondary {
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-width: 0;
  }

  .bot-profile-card {
    padding: 22px 24px 18px;
  }

  .bot-profile-card__name {
    font-size: 30px;
  }

  .bot-profile-card__back:hover {
    background: #e8e5e1;
  }

  .bot-action-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .bot-action-btn {
    min-height: 48px;
    font-size: 14px;
  }

  .bot-action-btn:hover:not(.is-active) {
    background: rgba(255, 247, 251, 0.95);
    transform: translateY(-1px);
    box-shadow: var(--bot-shadow-sm);
  }

  .bot-action-btn.is-active:hover {
    background: var(--bot-btn-hover);
    transform: translateY(-1px);
    box-shadow: 0 6px 18px var(--bot-btn-shadow);
  }

  .bot-profile-card:hover,
  .bot-chart-card:hover {
    transform: translateY(-1px);
    box-shadow: var(--bot-shadow-lg);
  }

  .bot-stat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .bot-stat-card {
    padding: 16px 14px;
    min-height: 84px;
    transition: transform 0.4s var(--bot-ease-soft), box-shadow 0.4s var(--bot-ease-soft);
  }

  .bot-stat-card:hover {
    transform: translateY(-1px);
    box-shadow: var(--bot-shadow-md);
  }

  .bot-stat-card__value {
    font-size: 24px;
  }

  .bot-chart-card {
    padding: 20px 18px 16px;
    flex: 1;
  }

  .bot-chart-card__title {
    font-size: 17px;
    margin-bottom: 14px;
  }

  .bot-chart-card__canvas {
    height: 180px;
  }
}

@media (min-width: 1024px) {
  .bot-dash-main.ss-main {
    padding: 24px 36px 44px;
    gap: 22px;
  }

  .bot-dash-grid {
    gap: 22px;
  }

  .bot-dash-grid__primary,
  .bot-dash-grid__secondary {
    gap: 22px;
  }

  .bot-action-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .bot-stat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .bot-chart-card__canvas {
    height: 220px;
  }
}

@media (min-width: 1280px) {
  .bot-dash-grid {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 24px;
  }

  .bot-dash-grid__primary,
  .bot-dash-grid__secondary {
    gap: 24px;
  }

  .bot-stat-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .bot-chart-card__canvas {
    height: 260px;
  }
}
