:root {
  color-scheme: dark;
  --oc-bg: #0b1020;
  --oc-bg-primary: #11182a;
  --oc-bg-secondary: #17213a;
  --oc-bg-hover: #1e2a47;
  --oc-bg-active: #253255;
  --oc-border: #34415f;
  --oc-border-subtle: #26324d;
  --oc-text: #f6f9fc;
  --oc-text-muted: #adbdcc;
  --oc-link: #80e9ff;
  --oc-focus: #7a73ff;
  --oc-masthead-height: 76px;
  --oc-sidebar-width: 286px;
}

* {
  scrollbar-color: #737679 transparent;
  scrollbar-width: thin;
}

html,
body,
#root {
  height: 100%;
  margin: 0;
  background: var(--oc-bg);
}

body {
  overflow: hidden;
}

button,
input,
textarea,
select {
  font: inherit;
}

.oc-shell {
  min-height: 100%;
  background:
    radial-gradient(circle at 14% 0%, rgba(99, 91, 255, 0.18), transparent 32%),
    radial-gradient(circle at 88% 8%, rgba(0, 212, 255, 0.1), transparent 28%),
    var(--oc-bg);
  color: var(--oc-text);
}

.oc-masthead {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1300;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--oc-masthead-height);
  padding: 0 22px 0 16px;
  background:
    linear-gradient(100deg, rgba(10, 37, 64, 0.98), rgba(18, 26, 54, 0.98) 58%, rgba(25, 19, 54, 0.98));
  border-bottom: 1px solid rgba(128, 233, 255, 0.14);
  box-shadow: 0 8px 28px rgba(2, 6, 23, 0.3);
  box-sizing: border-box;
}

.oc-masthead__brand,
.oc-masthead__tools,
.oc-brand,
.oc-user-menu,
.oc-masthead__search {
  display: flex;
  align-items: center;
}

.oc-masthead__brand {
  gap: 12px;
}

.oc-masthead .MuiIconButton-root {
  color: var(--oc-text);
  border-radius: 4px;
}

.oc-masthead .MuiIconButton-root:hover,
.oc-masthead__icon-link:hover {
  background: var(--oc-bg-hover);
}

.oc-masthead__menu {
  margin-right: 4px !important;
}

.oc-brand {
  gap: 10px;
  color: var(--oc-text);
  text-decoration: none;
}

.oc-brand__logo {
  width: 38px !important;
  height: 38px !important;
  border-radius: 4px;
}

.oc-brand__name {
  display: flex;
  flex-direction: column;
  font-size: 15px;
  line-height: 1.05;
}

.oc-brand__name strong {
  font-size: 18px;
  font-weight: 700;
}

.oc-masthead__tools {
  gap: 4px;
}

.oc-masthead__search {
  width: 230px;
  height: 38px;
  margin-right: 10px;
  padding: 0 10px;
  gap: 8px;
  color: var(--oc-text-muted);
  text-decoration: none;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid var(--oc-border);
  border-radius: 9px;
  box-sizing: border-box;
}

.oc-masthead__search span {
  flex: 1;
  font-size: 13px;
}

.oc-masthead__search kbd {
  min-width: 20px;
  padding: 1px 5px;
  color: var(--oc-text-muted);
  text-align: center;
  background: rgba(7, 17, 31, 0.72);
  border: 1px solid var(--oc-border);
  border-radius: 3px;
}

.oc-masthead__icon-link {
  display: inline-flex;
  padding: 8px;
  color: var(--oc-text);
  border-radius: 4px;
}

.oc-user-menu {
  min-width: 0;
  margin-left: 8px;
  padding: 7px 8px;
  gap: 8px;
  color: var(--oc-text);
  text-decoration: none;
  border-left: 1px solid var(--oc-border-subtle);
}

.oc-user-menu__avatar {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  color: #07111f;
  font-weight: 700;
  background: linear-gradient(135deg, #80e9ff, #7a73ff);
  border-radius: 50%;
}

.oc-user-menu__name {
  max-width: 240px;
  overflow: hidden;
  font-size: 13px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.oc-user-menu > svg {
  width: 16px;
  transform: rotate(90deg);
}

.oc-sidebar {
  position: fixed;
  z-index: 1200;
  top: var(--oc-masthead-height);
  bottom: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  width: var(--oc-sidebar-width);
  background:
    linear-gradient(180deg, rgba(13, 20, 37, 0.99), rgba(10, 16, 32, 0.99));
  border-right: 1px solid var(--oc-border-subtle);
  transition: transform 160ms ease;
}

.oc-sidebar__nav {
  flex: 1;
  padding: 22px 12px;
  overflow-y: auto;
}

.oc-nav-divider {
  height: 1px;
  margin: 12px 8px;
  background: var(--oc-border-subtle);
}

.oc-nav-item {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 42px;
  margin: 2px 0;
  padding: 8px 12px 8px 20px;
  gap: 12px;
  color: var(--oc-text-muted);
  font-size: 14px;
  text-decoration: none;
  border-radius: 8px;
  box-sizing: border-box;
}

.oc-nav-item:hover {
  color: var(--oc-text);
  background: var(--oc-bg-hover);
}

.oc-nav-item--active {
  color: var(--oc-text);
  font-weight: 600;
  background: linear-gradient(90deg, rgba(99, 91, 255, 0.30), rgba(0, 212, 255, 0.08));
}

.oc-nav-item--active::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, #7a73ff, #00d4ff);
  content: '';
}

.oc-nav-item__icon {
  width: 19px !important;
  height: 19px !important;
  color: inherit;
}

.oc-sidebar__footer {
  padding: 10px 12px 14px;
  border-top: 1px solid var(--oc-border-subtle);
}

.oc-sidebar__version {
  display: flex;
  align-items: center;
  padding: 10px 12px;
  gap: 8px;
  color: #65738f;
  font-size: 11px;
}

.oc-sidebar__version svg {
  width: 15px;
}

.oc-main {
  position: fixed;
  inset: var(--oc-masthead-height) 0 0 var(--oc-sidebar-width);
  overflow: auto;
  background:
    radial-gradient(circle at 12% 0%, rgba(99, 91, 255, 0.16), transparent 34%),
    radial-gradient(circle at 90% 5%, rgba(0, 212, 255, 0.08), transparent 30%),
    var(--oc-bg);
  transition: left 160ms ease;
}

.oc-shell__backdrop {
  display: none;
}

@media (min-width: 761px) {
  .oc-shell--compact {
    --oc-sidebar-width: 0px;
  }

  .oc-shell--compact .oc-sidebar {
    width: 286px;
    transform: translateX(-100%);
  }
}

@media (max-width: 1100px) {
  .oc-masthead__search {
    width: 42px;
  }

  .oc-masthead__search span,
  .oc-masthead__search kbd,
  .oc-user-menu__name {
    display: none;
  }
}

@media (max-width: 760px) {
  .oc-brand__name,
  .oc-masthead__tools > .oc-masthead__icon-link,
  .oc-masthead__search {
    display: none;
  }

  .oc-sidebar {
    transform: translateX(-100%);
    transition: transform 160ms ease;
  }

  .oc-sidebar--open {
    transform: translateX(0);
  }

  .oc-shell__backdrop {
    position: fixed;
    z-index: 1100;
    inset: var(--oc-masthead-height) 0 0;
    display: block;
    visibility: hidden;
    background: rgba(0, 0, 0, 0.65);
    opacity: 0;
    transition: opacity 160ms ease;
  }

  .oc-shell__backdrop--open {
    visibility: visible;
    opacity: 1;
  }

  .oc-main {
    left: 0;
  }
}


/*# sourceMappingURL=main.b8149dad.css.map*/