/* [project]/apps/shell/app/app/dashboard.css [app-client] (css) */
.app-shell {
  grid-template-columns: 268px minmax(0, 1fr);
  min-height: 100vh;
  display: grid;
}

.main-col {
  flex-direction: column;
  min-width: 0;
  display: flex;
}

.sidenav {
  border-right: var(--border);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  background: #ffffffb8;
  flex-direction: column;
  align-self: start;
  height: 100vh;
  padding: 16px 14px;
  display: flex;
  position: sticky;
  top: 0;
  overflow: hidden auto;
}

.sn-brand {
  cursor: pointer;
  align-items: center;
  gap: 9px;
  padding: 6px 8px 16px;
  text-decoration: none;
  display: flex;
}

.sn-brand .wm {
  letter-spacing: -.5px;
  color: var(--zinc-900);
  font-size: 19px;
  font-weight: 700;
}

.sn-nav {
  flex-direction: column;
  gap: 2px;
  min-width: 0;
  min-height: 0;
  display: flex;
  overflow: hidden auto;
}

.sn-item {
  text-align: left;
  border-radius: var(--r-button);
  width: 100%;
  min-width: 0;
  font-family: var(--font-sans);
  color: var(--zinc-600);
  cursor: pointer;
  box-sizing: border-box;
  background: none;
  border: none;
  align-items: center;
  gap: 10px;
  padding: 9px 10px;
  font-size: 13.5px;
  font-weight: 600;
  text-decoration: none;
  transition: all .12s;
  display: flex;
}

.sn-item:hover {
  background: var(--zinc-100);
  color: var(--zinc-800);
}

.sn-item.active {
  background: var(--primary-50);
  color: var(--primary-700);
}

.sn-item .lead {
  flex: none;
  width: 18px;
  height: 18px;
}

.sn-item .sn-label {
  flex: 1;
  min-width: 0;
}

.sn-item .sn-caret {
  width: 14px;
  height: 14px;
  color: var(--zinc-400);
  flex: none;
  transition: transform .16s;
}

.sn-item .sn-caret.open {
  transform: rotate(90deg);
}

.sn-item .sn-badge {
  border-radius: var(--r-badge);
  background: var(--zinc-100);
  color: var(--zinc-500);
  flex: none;
  padding: 1px 6px;
  font-size: 10px;
  font-weight: 700;
}

.sn-item.active .sn-badge {
  color: var(--primary-700);
  background: #fff;
}

.sn-sub {
  flex-direction: column;
  gap: 1px;
  margin: 1px 0 4px;
  padding-left: 8px;
  display: flex;
  position: relative;
}

.sn-cat {
  text-align: left;
  cursor: pointer;
  width: 100%;
  font-family: var(--font-sans);
  border-radius: var(--r-button);
  background: none;
  border: none;
  align-items: center;
  gap: 8px;
  padding: 6px 8px 6px 14px;
  transition: all .12s;
  display: flex;
}

.sn-cat:hover {
  background: var(--zinc-100);
}

.sn-cat .cat-ic {
  color: #fff;
  border-radius: 5px;
  flex: none;
  justify-content: center;
  align-items: center;
  width: 18px;
  height: 18px;
  display: flex;
}

.sn-cat .cat-ic svg {
  width: 11px;
  height: 11px;
}

.sn-cat .cat-name {
  color: var(--zinc-700);
  white-space: nowrap;
  text-overflow: ellipsis;
  flex: 1;
  font-size: 12.5px;
  font-weight: 600;
  overflow: hidden;
}

.sn-cat .cat-on {
  background: var(--emerald-500);
  border-radius: 50%;
  flex: none;
  width: 6px;
  height: 6px;
}

.sn-cat .cat-n {
  color: var(--zinc-400);
  font-size: 10px;
  font-weight: 600;
  font-family: var(--font-mono);
}

.sn-cat .cat-caret {
  width: 12px;
  height: 12px;
  color: var(--zinc-300);
  transition: transform .16s;
}

.sn-cat .cat-caret.open {
  transform: rotate(90deg);
}

.sn-capps {
  flex-direction: column;
  gap: 1px;
  margin: 1px 0 3px;
  padding-left: 14px;
  display: flex;
  position: relative;
}

.sn-capps:before {
  content: "";
  background: var(--zinc-200);
  border-radius: 2px;
  width: 1.5px;
  position: absolute;
  top: 1px;
  bottom: 6px;
  left: 13px;
}

.sn-capp {
  border-radius: var(--r-button);
  color: var(--zinc-600);
  cursor: pointer;
  align-items: center;
  gap: 8px;
  min-width: 0;
  padding: 6px 8px 6px 16px;
  font-size: 12px;
  font-weight: 500;
  transition: all .12s;
  display: flex;
}

.sn-capp:hover {
  background: var(--zinc-100);
  color: var(--zinc-800);
}

.sn-capp .cdot {
  border-radius: 50%;
  flex: none;
  width: 6px;
  height: 6px;
}

.sn-capp .cname {
  white-space: nowrap;
  text-overflow: ellipsis;
  flex: 1;
  overflow: hidden;
}

.sn-capp .con {
  letter-spacing: .02em;
  text-transform: uppercase;
  color: var(--emerald-700);
  font-size: 9px;
  font-weight: 700;
}

.sn-more {
  color: var(--zinc-400);
  cursor: pointer;
  border-radius: var(--r-button);
  padding: 6px 8px 6px 16px;
  font-size: 11.5px;
}

.sn-more:hover {
  color: var(--primary-600);
  background: var(--zinc-100);
}

.sn-add {
  border-radius: var(--r-button);
  color: var(--primary-600);
  cursor: pointer;
  white-space: nowrap;
  align-items: center;
  gap: 9px;
  margin-top: 2px;
  padding: 7px 10px 7px 14px;
  font-size: 12.5px;
  font-weight: 600;
  transition: all .12s;
  display: flex;
}

.sn-add:hover {
  background: var(--primary-50);
}

.sn-add svg {
  width: 14px;
  height: 14px;
}

.sn-spacer {
  flex: 1;
  min-height: 12px;
}

.sn-foot {
  border-top: var(--border);
  padding-top: 10px;
  position: relative;
}

.sn-account {
  border-radius: var(--r-button);
  cursor: pointer;
  align-items: center;
  gap: 10px;
  padding: 8px;
  display: flex;
}

.sn-account:hover {
  background: var(--zinc-100);
}

.sn-account .sa-txt {
  flex: 1;
  min-width: 0;
}

.sn-account .sa-name {
  color: var(--zinc-800);
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: 13px;
  font-weight: 600;
  overflow: hidden;
}

.sn-account .sa-mail {
  color: var(--zinc-400);
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: 11px;
  overflow: hidden;
}

.topbar {
  z-index: 30;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: var(--border);
  background: #ffffffb8;
  align-items: center;
  gap: 12px;
  height: 56px;
  padding: 0 22px;
  display: flex;
  position: sticky;
  top: 0;
}

.tb-menu {
  display: none;
}

.tb-logo {
  align-items: center;
  gap: 7px;
  margin-right: 4px;
  text-decoration: none;
  display: flex;
}

.tb-logo-text {
  letter-spacing: -.5px;
  color: var(--zinc-900);
  font-size: 16px;
  font-weight: 700;
}

.tb-search {
  background: var(--zinc-100);
  width: 320px;
  max-width: 42%;
  color: var(--zinc-400);
  cursor: text;
  border-radius: 999px;
  align-items: center;
  gap: 9px;
  padding: 8px 14px;
  font-size: 13px;
  display: flex;
}

.tb-search .kbd {
  border: 1px solid var(--zinc-200);
  color: var(--zinc-400);
  background: #fff;
  border-radius: 4px;
  margin-left: auto;
  padding: 1px 5px;
  font-size: 10px;
  font-weight: 600;
}

.tb-search > span {
  white-space: nowrap;
}

.tb-right {
  align-items: center;
  gap: 10px;
  margin-left: auto;
  display: flex;
}

.icon-btn {
  border-radius: var(--r-button);
  border: 1px solid var(--zinc-200);
  cursor: pointer;
  width: 36px;
  height: 36px;
  color: var(--zinc-500);
  background: #fff;
  justify-content: center;
  align-items: center;
  transition: all .13s;
  display: flex;
  position: relative;
}

.icon-btn:hover {
  background: var(--zinc-50);
  color: var(--zinc-700);
}

.icon-btn svg {
  width: 18px;
  height: 18px;
}

.icon-btn .ndot {
  background: var(--error);
  border: 1.5px solid #fff;
  border-radius: 50%;
  width: 7px;
  height: 7px;
  position: absolute;
  top: 7px;
  right: 8px;
}

.tok-wrap {
  position: relative;
}

.tok-tip {
  z-index: 50;
  background: var(--zinc-900);
  color: #fff;
  border-radius: var(--r-card);
  width: 188px;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  pointer-events: none;
  padding: 9px 12px;
  font-size: 11.5px;
  transition: all .15s;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  transform: translateY(-4px);
}

.tok-wrap:hover .tok-tip {
  opacity: 1;
  transform: translateY(0);
}

.tok-tip .r {
  justify-content: space-between;
  gap: 10px;
  margin-top: 4px;
  display: flex;
}

.tok-tip .r:first-child {
  margin-top: 0;
}

.tok-tip .r span:last-child {
  font-family: var(--font-mono);
  font-weight: 600;
}

.page {
  max-width: 1080px;
  margin: 0 auto;
  padding: 30px 24px 120px;
}

.greeting h1 {
  letter-spacing: -1px;
  color: var(--zinc-900);
  font-size: 30px;
  font-weight: 700;
}

.greeting p {
  color: var(--zinc-500);
  margin-top: 6px;
  font-size: 14.5px;
}

.sec-label {
  align-items: center;
  margin: 30px 0 14px;
  display: flex;
}

.sec-label .lbl {
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--zinc-500);
  font-size: 11.5px;
  font-weight: 700;
}

.sec-label .lnk {
  color: var(--primary-600);
  cursor: pointer;
  white-space: nowrap;
  margin-left: auto;
  font-size: 12.5px;
  font-weight: 600;
  text-decoration: none;
}

.sec-label .lnk:hover {
  color: var(--primary-700);
}

.chat-banner {
  align-items: center;
  gap: 18px;
  padding: 20px 22px;
  display: flex;
}

.chat-banner .cb-logo {
  background: var(--primary-500);
  width: 48px;
  height: 48px;
  box-shadow: var(--shadow-md);
  border-radius: 12px;
  flex: none;
  justify-content: center;
  align-items: center;
  display: flex;
}

.chat-banner .cb-mid {
  flex: 1;
  min-width: 0;
}

.chat-banner .cb-title {
  color: var(--zinc-900);
  font-size: 16px;
  font-weight: 700;
}

.app-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  display: grid;
}

.appcard {
  cursor: pointer;
  transition: transform .14s, box-shadow .14s;
}

.appcard:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.appcard .ac-body {
  padding: 16px 16px 14px;
}

.appcard .ac-top {
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  display: flex;
}

.appcard .ac-top > div {
  flex: 1;
  min-width: 0;
}

.appcard .ac-name {
  color: var(--zinc-800);
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: 14px;
  font-weight: 700;
  overflow: hidden;
}

.appcard .ac-biz {
  color: var(--zinc-400);
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: 11.5px;
  overflow: hidden;
}

.appcard .ac-metric {
  letter-spacing: -.5px;
  color: var(--zinc-900);
  font-size: 24px;
  font-weight: 700;
}

.appcard .ac-metric.mono {
  font-family: var(--font-mono);
}

.appcard .ac-mlabel {
  color: var(--zinc-500);
  margin-bottom: 2px;
  font-size: 11.5px;
}

.appcard .ac-foot {
  border-top: var(--border);
  align-items: center;
  padding: 11px 16px;
  display: flex;
}

.appcard .ac-open {
  color: var(--primary-600);
  white-space: nowrap;
  align-items: center;
  gap: 4px;
  font-size: 12.5px;
  font-weight: 600;
  display: flex;
}

.add-card {
  border: 1.5px dashed var(--zinc-300);
  border-radius: var(--r-card);
  cursor: pointer;
  color: var(--primary-600);
  background: #fff6;
  flex-direction: row;
  grid-column: 1 / -1;
  justify-content: center;
  align-items: center;
  gap: 12px;
  min-height: 72px;
  transition: all .14s;
  display: flex;
}

.add-card:hover {
  border-color: var(--primary-400);
  background: var(--primary-50);
}

.add-card .ac-plus {
  background: var(--primary-50);
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  width: 38px;
  height: 38px;
  display: flex;
}

.spark {
  align-items: flex-end;
  gap: 3px;
  height: 30px;
  margin-top: 10px;
  display: flex;
}

.spark span {
  background: color-mix(in srgb, var(--primary-500) 28%, white);
  border-radius: 2px 2px 0 0;
  flex: 1;
  transition: background .14s;
}

.appcard:hover .spark span {
  background: color-mix(in srgb, var(--primary-500) 45%, white);
}

.qa-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  display: grid;
}

.qa {
  cursor: pointer;
  border: var(--border);
  border-radius: var(--r-card);
  background: #fff;
  align-items: center;
  gap: 12px;
  padding: 14px;
  transition: all .14s;
  display: flex;
}

.qa:hover {
  border-color: var(--primary-200);
  background: var(--primary-50);
  transform: translateY(-1px);
}

.qa .qa-ic {
  color: #fff;
  border-radius: 9px;
  flex: none;
  justify-content: center;
  align-items: center;
  width: 38px;
  height: 38px;
  display: flex;
}

.qa .qa-ic svg {
  width: 19px;
  height: 19px;
}

.qa > div {
  flex: 1;
  min-width: 0;
}

.qa .qa-t {
  color: var(--zinc-800);
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: 13.5px;
  font-weight: 600;
  overflow: hidden;
}

.qa .qa-d {
  color: var(--zinc-500);
  white-space: nowrap;
  text-overflow: ellipsis;
  margin-top: 1px;
  font-size: 11.5px;
  overflow: hidden;
}

.feed-row {
  border-bottom: var(--border);
  align-items: center;
  gap: 12px;
  padding: 13px 16px;
  display: flex;
}

.feed-row:last-child {
  border-bottom: none;
}

.feed-ic {
  border-radius: 50%;
  flex: none;
  justify-content: center;
  align-items: center;
  width: 28px;
  height: 28px;
  display: flex;
}

.feed-ic svg {
  width: 14px;
  height: 14px;
}

.feed-txt {
  color: var(--zinc-700);
  flex: 1;
  font-size: 13.5px;
}

.feed-meta {
  color: var(--zinc-400);
  margin-top: 2px;
  font-size: 11.5px;
}

.feed-tok {
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
  font-size: 12.5px;
}

.sn-backdrop {
  display: none;
}

@media (max-width: 860px) {
  .app-shell {
    grid-template-columns: 1fr;
  }

  .sidenav {
    z-index: 110;
    width: 268px;
    box-shadow: var(--shadow-lg);
    transition: transform .22s cubic-bezier(.2, .8, .2, 1);
    position: fixed;
    top: 0;
    left: 0;
    transform: translateX(-100%);
  }

  .sidenav.open {
    transform: none;
  }

  .sn-backdrop.show {
    z-index: 105;
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
    background: #18181b59;
    display: block;
    position: fixed;
    inset: 0;
  }

  .tb-menu {
    display: flex;
  }

  .tb-search {
    display: none;
  }
}

@media (max-width: 760px) {
  .app-grid {
    grid-template-columns: 1fr;
  }

  .qa-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.chat-fab {
  z-index: 70;
  cursor: pointer;
  background: var(--primary-500);
  color: #fff;
  width: 56px;
  height: 56px;
  box-shadow: var(--shadow-lg);
  border: none;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  transition: all .16s;
  display: flex;
  position: fixed;
  bottom: 26px;
  right: 26px;
}

.chat-fab:hover {
  background: var(--primary-600);
  transform: scale(1.05);
}

.chat-fab svg {
  width: 26px;
  height: 26px;
}

.chat-panel {
  z-index: 71;
  border: var(--border);
  border-radius: var(--r-card);
  width: 390px;
  max-width: calc(100vw - 36px);
  height: 600px;
  max-height: calc(100vh - 52px);
  box-shadow: var(--shadow-lg);
  background: #fff;
  flex-direction: column;
  animation: .2s cubic-bezier(.2, .8, .2, 1) chatIn;
  display: flex;
  position: fixed;
  bottom: 26px;
  right: 26px;
  overflow: hidden;
}

.chat-head {
  align-items: center;
  gap: 9px;
  padding: 11px 14px;
  display: flex;
}

.chat-head .ch-title {
  color: var(--zinc-800);
  font-size: 13.5px;
  font-weight: 700;
}

.chat-head .ch-sub {
  color: var(--zinc-400);
  font-size: 12px;
}

.chat-head .ch-close {
  cursor: pointer;
  color: var(--zinc-400);
  background: none;
  border: none;
  border-radius: 5px;
  margin-left: auto;
  padding: 4px;
  display: flex;
}

.chat-head .ch-close:hover {
  color: var(--zinc-700);
  background: var(--zinc-100);
}

.chat-body {
  background: var(--zinc-50);
  flex-direction: column;
  flex: 1;
  gap: 12px;
  padding: 16px;
  display: flex;
  overflow-y: auto;
}

.chat-foot {
  border-top: var(--border);
  background: #fff;
  padding: 11px 12px;
}

.chat-input-row {
  align-items: center;
  gap: 8px;
  display: flex;
}

.chat-pill {
  background: var(--zinc-100);
  border-radius: 999px;
  flex: 1;
  align-items: center;
  gap: 8px;
  padding: 0 6px 0 14px;
  display: flex;
}

.chat-pill input {
  font-family: var(--font-sans);
  color: var(--zinc-800);
  background: none;
  border: none;
  outline: none;
  flex: 1;
  padding: 10px 0;
  font-size: 13.5px;
}

.chat-pill input::placeholder {
  color: var(--zinc-400);
}

.chat-send {
  background: var(--primary-500);
  color: #fff;
  cursor: pointer;
  border: none;
  border-radius: 50%;
  flex: none;
  justify-content: center;
  align-items: center;
  width: 34px;
  height: 34px;
  transition: background .13s;
  display: flex;
}

.chat-send:hover {
  background: var(--primary-600);
}

.chat-send:disabled {
  background: var(--zinc-300);
  cursor: default;
}

.chat-send svg {
  width: 16px;
  height: 16px;
}

.empty-chat {
  text-align: center;
  margin: auto 0;
  padding: 20px;
}

.empty-chat .ec-logo {
  background: var(--primary-50);
  border-radius: 14px;
  justify-content: center;
  align-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 12px;
  display: inline-flex;
}

.chat-row {
  align-items: flex-end;
  gap: 8px;
  display: flex;
}

.typing {
  background: var(--zinc-100);
  border-radius: var(--r-badge);
  gap: 4px;
  padding: 11px 14px;
  display: inline-flex;
}

.typing span {
  background: var(--zinc-400);
  border-radius: 50%;
  width: 6px;
  height: 6px;
  animation: 1.2s infinite bounce;
}

.typing span:nth-child(2) {
  animation-delay: .15s;
}

.typing span:nth-child(3) {
  animation-delay: .3s;
}

@keyframes bounce {
  0%, 60%, 100% {
    opacity: .5;
    transform: translateY(0);
  }

  30% {
    opacity: 1;
    transform: translateY(-5px);
  }
}

@media (max-width: 500px) {
  .chat-panel {
    border-radius: 0;
    width: 100%;
    height: 100vh;
    max-height: 100vh;
    bottom: 0;
    right: 0;
  }
}

.app-layout {
  grid-template-columns: 200px minmax(0, 1fr);
  gap: 0;
  min-height: calc(100vh - 56px);
  display: grid;
}

.app-sidebar {
  border-right: var(--border);
  background: #ffffff80;
  flex-direction: column;
  align-self: start;
  gap: 2px;
  height: calc(100vh - 56px);
  padding: 16px 10px;
  display: flex;
  position: sticky;
  top: 56px;
  overflow-y: auto;
}

.app-sb-header {
  align-items: center;
  gap: 10px;
  padding: 8px 10px 16px;
  display: flex;
}

.app-sb-header .asb-icon {
  color: #fff;
  border-radius: 8px;
  flex: none;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  display: flex;
}

.app-sb-header .asb-icon svg {
  width: 18px;
  height: 18px;
}

.app-sb-header .asb-name {
  color: var(--zinc-800);
  font-size: 14px;
  font-weight: 700;
}

.app-sb-header .asb-biz {
  color: var(--zinc-400);
  font-size: 11px;
}

.app-sb-item {
  text-align: left;
  border-radius: var(--r-button);
  width: 100%;
  min-width: 0;
  font-family: var(--font-sans);
  color: var(--zinc-600);
  cursor: pointer;
  box-sizing: border-box;
  background: none;
  border: none;
  align-items: center;
  gap: 9px;
  padding: 8px 10px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: all .12s;
  display: flex;
}

.app-sb-item:hover {
  background: var(--zinc-100);
  color: var(--zinc-800);
}

.app-sb-item.active {
  background: var(--primary-50);
  color: var(--primary-700);
}

.app-sb-item svg {
  flex: none;
  width: 16px;
  height: 16px;
}

.app-sb-item .asb-label {
  flex: 1;
  min-width: 0;
}

.app-sb-item .asb-badge {
  border-radius: var(--r-badge);
  background: var(--zinc-100);
  color: var(--zinc-500);
  flex: none;
  padding: 1px 5px;
  font-size: 10px;
  font-weight: 700;
}

.app-sb-item.active .asb-badge {
  color: var(--primary-700);
  background: #fff;
}

.app-sb-back {
  border-top: var(--border);
  margin-top: auto;
  padding-top: 12px;
}

.app-sb-back a {
  color: var(--zinc-400);
  border-radius: var(--r-button);
  align-items: center;
  gap: 6px;
  padding: 8px 10px;
  font-size: 12.5px;
  font-weight: 600;
  text-decoration: none;
  display: flex;
}

.app-sb-back a:hover {
  color: var(--primary-600);
  background: var(--zinc-100);
}

.app-content {
  padding: 28px 28px 80px;
}

.app-greeting h2 {
  letter-spacing: -.5px;
  color: var(--zinc-900);
  font-size: 22px;
  font-weight: 700;
}

.app-greeting p {
  color: var(--zinc-400);
  margin-top: 2px;
  font-size: 13px;
}

@media (max-width: 860px) {
  .app-layout {
    grid-template-columns: 1fr;
  }

  .app-sidebar {
    display: none;
  }
}

/*# sourceMappingURL=apps_shell_app_app_dashboard_0i5wh5f.css.map*/