/* [project]/src/components/auth/ApiKeyDialog.module.css [app-client] (css) */
.ApiKeyDialog-module__7aSo_G__icon {
  border-radius: 22.5%;
  width: 60px;
  height: 60px;
  margin: 4px 0 14px;
  display: block;
  box-shadow: 0 10px 28px #ff7a0059;
}

.ApiKeyDialog-module__7aSo_G__h3 {
  margin-bottom: 4px;
  font-size: 15px;
}

.ApiKeyDialog-module__7aSo_G__mt {
  margin-top: 12px;
}

/* [project]/src/components/layout/Sidebar.module.css [app-client] (css) */
.Sidebar-module__XRNO5a__sidebar {
  background: var(--glass);
  -webkit-backdrop-filter: saturate(180%) blur(24px);
  border-right: 1px solid var(--line);
  flex-direction: column;
  gap: 4px;
  height: 100vh;
  padding: 22px 12px;
  display: flex;
  position: sticky;
  top: 0;
}

.Sidebar-module__XRNO5a__brand {
  align-items: center;
  gap: 10px;
  padding: 0 10px 18px;
  display: flex;
}

.Sidebar-module__XRNO5a__brand b {
  font-size: 15px;
  display: block;
}

.Sidebar-module__XRNO5a__brand span {
  color: var(--text-2);
  font-size: 12px;
}

.Sidebar-module__XRNO5a__logo {
  border-radius: 22.5%;
  flex: none;
  width: 36px;
  height: 36px;
  box-shadow: 0 4px 14px #ff7a0061, inset 0 0 0 .5px #00000014;
}

.Sidebar-module__XRNO5a__nav {
  gap: 2px;
  display: grid;
}

.Sidebar-module__XRNO5a__item {
  z-index: 0;
  color: var(--text);
  transition: background .15s, transform .2s var(--ease);
  border-radius: 9px;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  font-weight: 500;
  display: flex;
  position: relative;
  text-decoration: none !important;
}

.Sidebar-module__XRNO5a__item:hover {
  background: var(--gray-soft);
}

.Sidebar-module__XRNO5a__item:active {
  transform: scale(.98);
}

.Sidebar-module__XRNO5a__active, .Sidebar-module__XRNO5a__active:hover {
  color: #fff;
  background: none;
  transition: color .2s;
}

.Sidebar-module__XRNO5a__pill {
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(180deg, var(--accent), var(--accent-strong));
  position: absolute;
  inset: 0;
  box-shadow: 0 4px 12px #ff7a0047;
}

.Sidebar-module__XRNO5a__foot {
  color: var(--text-2);
  gap: 8px;
  margin-top: auto;
  padding: 10px;
  font-size: 12px;
  display: grid;
}

.Sidebar-module__XRNO5a__conn {
  align-items: center;
  gap: 8px;
  min-width: 0;
  display: flex;
}

.Sidebar-module__XRNO5a__conn span {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.Sidebar-module__XRNO5a__dot {
  background: var(--text-3);
  border-radius: 50%;
  flex: none;
  width: 8px;
  height: 8px;
}

.Sidebar-module__XRNO5a__ok {
  background: var(--green);
  box-shadow: 0 0 0 3px var(--green-soft);
}

.Sidebar-module__XRNO5a__ko {
  background: var(--red);
}

@media (max-width: 900px) {
  .Sidebar-module__XRNO5a__sidebar {
    z-index: 50;
    width: min(300px, 84vw);
    height: 100dvh;
    padding: calc(22px + env(safe-area-inset-top)) 14px calc(16px + env(safe-area-inset-bottom));
    background: var(--bg-elev);
    visibility: hidden;
    transition: transform .5s var(--ease), visibility 0s linear .5s;
    border-radius: 0 24px 24px 0;
    position: fixed;
    inset: 0 auto 0 0;
    overflow-y: auto;
    transform: translateX(-104%);
    box-shadow: 24px 0 60px #00000040;
  }

  body.nav-open .Sidebar-module__XRNO5a__sidebar {
    visibility: visible;
    transition: transform .5s var(--ease), visibility 0s;
    transform: none;
  }

  .dragging.Sidebar-module__XRNO5a__sidebar {
    transition: none !important;
  }

  .Sidebar-module__XRNO5a__item {
    border-radius: 12px;
    padding: 12px;
    font-size: 16px;
  }

  .Sidebar-module__XRNO5a__brand, .Sidebar-module__XRNO5a__item, .Sidebar-module__XRNO5a__foot {
    opacity: 0;
    transition: opacity .3s ease, transform .45s var(--ease);
    transform: translateX(-14px);
  }

  :is(body.nav-open .Sidebar-module__XRNO5a__brand, body.nav-open .Sidebar-module__XRNO5a__item, body.nav-open .Sidebar-module__XRNO5a__foot) {
    opacity: 1;
    transform: none;
  }

  body.nav-open .Sidebar-module__XRNO5a__item:first-child {
    transition-delay: .1s;
  }

  body.nav-open .Sidebar-module__XRNO5a__item:nth-child(2) {
    transition-delay: .14s;
  }

  body.nav-open .Sidebar-module__XRNO5a__item:nth-child(3) {
    transition-delay: .18s;
  }

  body.nav-open .Sidebar-module__XRNO5a__item:nth-child(4) {
    transition-delay: .22s;
  }

  body.nav-open .Sidebar-module__XRNO5a__item:nth-child(5) {
    transition-delay: .26s;
  }

  body.nav-open .Sidebar-module__XRNO5a__item:nth-child(6) {
    transition-delay: .3s;
  }

  body.nav-open .Sidebar-module__XRNO5a__foot {
    transition-delay: .34s;
  }

  body.nav-open .Sidebar-module__XRNO5a__brand {
    transition-delay: 60ms;
  }
}

/* [project]/src/components/layout/MobileBar.module.css [app-client] (css) */
.MobileBar-module__v7v3KG__bar {
  display: none;
}

@media (max-width: 900px) {
  .MobileBar-module__v7v3KG__bar {
    z-index: 30;
    height: calc(56px + env(safe-area-inset-top));
    padding: env(safe-area-inset-top) 14px 0;
    background: var(--glass);
    -webkit-backdrop-filter: saturate(180%) blur(24px);
    border-bottom: 1px solid var(--line);
    align-items: center;
    gap: 10px;
    display: flex;
    position: sticky;
    top: 0;
  }
}

.MobileBar-module__v7v3KG__logo {
  border-radius: 22.5%;
  width: 28px;
  height: 28px;
}

.MobileBar-module__v7v3KG__title {
  letter-spacing: -.02em;
  white-space: nowrap;
  text-overflow: ellipsis;
  flex: 1;
  font-size: 16px;
  overflow: hidden;
}

.MobileBar-module__v7v3KG__menu {
  background: var(--gray-soft);
  cursor: pointer;
  border: 0;
  border-radius: 12px;
  flex: none;
  place-items: center;
  width: 40px;
  height: 40px;
  display: grid;
}

.MobileBar-module__v7v3KG__menu:active {
  transform: scale(.94);
}

.MobileBar-module__v7v3KG__burger {
  width: 18px;
  height: 14px;
  position: relative;
}

.MobileBar-module__v7v3KG__burger i {
  background: var(--text);
  width: 100%;
  height: 2px;
  transition: transform .35s var(--ease), opacity .2s, top .35s var(--ease);
  border-radius: 2px;
  position: absolute;
  left: 0;
}

.MobileBar-module__v7v3KG__burger i:first-child {
  top: 0;
}

.MobileBar-module__v7v3KG__burger i:nth-child(2) {
  top: 6px;
}

.MobileBar-module__v7v3KG__burger i:nth-child(3) {
  top: 12px;
}

.MobileBar-module__v7v3KG__burger[data-open="true"] i:first-child {
  top: 6px;
  transform: rotate(45deg);
}

.MobileBar-module__v7v3KG__burger[data-open="true"] i:nth-child(2) {
  opacity: 0;
  transform: scaleX(.2);
}

.MobileBar-module__v7v3KG__burger[data-open="true"] i:nth-child(3) {
  top: 6px;
  transform: rotate(-45deg);
}

/* [project]/src/components/layout/AppShell.module.css [app-client] (css) */
.AppShell-module__cB5iMW__app {
  grid-template-columns: 250px minmax(0, 1fr);
  min-height: 100vh;
  display: grid;
}

.AppShell-module__cB5iMW__main {
  width: 100%;
  min-width: 0;
  max-width: 1180px;
  padding: 34px 40px 80px;
}

.AppShell-module__cB5iMW__backdrop {
  display: none;
}

@media (max-width: 900px) {
  .AppShell-module__cB5iMW__app {
    grid-template-columns: 1fr;
  }

  .AppShell-module__cB5iMW__main {
    transition: transform .5s var(--ease);
    padding: 22px 16px 60px;
  }

  body.nav-open .AppShell-module__cB5iMW__main {
    transform: translateX(24px)scale(.985);
  }

  body.nav-open {
    overflow: hidden;
  }

  .AppShell-module__cB5iMW__backdrop {
    z-index: 40;
    -webkit-backdrop-filter: blur(6px);
    opacity: 0;
    pointer-events: none;
    background: #00000061;
    transition: opacity .4s;
    display: block;
    position: fixed;
    inset: 0;
  }

  body.nav-open .AppShell-module__cB5iMW__backdrop {
    opacity: 1;
    pointer-events: auto;
  }
}

/*# sourceMappingURL=src_components_192mjsd._.css.map*/