:root {
  color-scheme: dark;
  --bg: #07121d;
  --bg2: #091724;
  --sidebar: #081522;
  --panel: #0d1a27;
  --panel2: #0b1824;
  --line: #203245;
  --line2: #172b3c;
  --text: #f0f4f8;
  --muted: #8d9cab;
  --muted2: #66798b;
  --purple: #7c4dff;
  --purple2: #9b72ff;
  --purple-bg: #2a1e54;
  --blue: #3497ff;
  --green: #42c96b;
  --amber: #ffad17;
  --red: #ff4d55;
  --teal: #36c5ab;
}
* {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  min-height: 100%;
  background: radial-gradient(circle at 66% 0, #0d2030 0, #07121d 38%, #06101a 100%);
  color: var(--text);
  font:
    12px/1.35 Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
}
body {
  min-width: 1180px;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input {
  font: inherit;
  color: inherit;
}
.screen {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 181px minmax(0, 1fr);
}
.sidebar {
  position: fixed;
  inset: 0 auto 0 0;
  width: 181px;
  background: linear-gradient(180deg, #081522 0, #0a1825 58%, #081522 100%);
  border-right: 1px solid var(--line2);
  display: flex;
  flex-direction: column;
  z-index: 20;
}
.brand {
  height: 51px;
  border-bottom: 1px solid var(--line2);
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 20px;
  font-size: 21px;
  font-weight: 750;
}
.brand-mark {
  width: 24px;
  height: 24px;
  display: block;
}
.side-scroll {
  padding: 10px 10px 64px;
  overflow: auto;
}
.side-group {
  margin: 4px 0 15px;
}
.side-label {
  font-size: 10px;
  color: #7f8d9a;
  text-transform: uppercase;
  letter-spacing: 0.035em;
  margin: 8px 9px 5px;
}
.side-link {
  height: 30px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  gap: 9px;
  color: #b9c2cb;
  padding: 0 10px;
  margin: 1px 0;
  position: relative;
}
.side-link:hover {
  background: #111f2d;
}
.side-link.active {
  background: linear-gradient(90deg, #29204e, #2e255e);
  color: #fff;
}
.side-link .si {
  width: 14px;
  height: 14px;
  color: #94a4b4;
  flex: 0 0 auto;
}
.side-link.active .si {
  color: #c4afff;
}
.side-count {
  margin-left: auto;
  min-width: 17px;
  height: 17px;
  border-radius: 999px;
  padding: 0 5px;
  display: grid;
  place-items: center;
  font-size: 10px;
  font-weight: 700;
  background: #7544d9;
  color: #fff;
}
.side-count.red {
  background: #e62d3f;
}
.side-divider {
  height: 1px;
  background: var(--line2);
  margin: 9px 0;
}
.sidebar-foot {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 52px;
  border-top: 1px solid var(--line2);
  background: #081522;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #90a0ae;
  padding: 0 18px;
  font-size: 11px;
}
.main {
  grid-column: 2;
  min-width: 0;
}
.topbar {
  height: 51px;
  border-bottom: 1px solid var(--line2);
  background: rgba(6, 16, 26, 0.86);
  backdrop-filter: blur(10px);
  display: grid;
  grid-template-columns: minmax(260px, 1fr) 470px minmax(330px, 1fr);
  align-items: center;
  padding: 0 25px;
  position: sticky;
  top: 0;
  z-index: 15;
}
.breadcrumbs {
  display: flex;
  gap: 11px;
  align-items: center;
}
.breadcrumbs .root {
  color: #a779ff;
}
.breadcrumbs .sep {
  color: #a65f65;
}
.breadcrumbs .current {
  font-weight: 700;
}
.search-box {
  height: 31px;
  border: 1px solid #27394a;
  background: #0a1622;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 10px;
  color: #8393a2;
}
.search-box input {
  border: 0;
  outline: 0;
  background: transparent;
  width: 100%;
  font-size: 12px;
}
.search-box input::placeholder {
  color: #82909d;
}
.kbd {
  font-size: 10px;
  color: #7c8894;
  border: 1px solid #263849;
  border-radius: 4px;
  padding: 1px 5px;
  background: #101d29;
}
.top-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  height: 100%;
}
.top-icon {
  width: 42px;
  height: 100%;
  display: grid;
  place-items: center;
  border-left: 1px solid #142635;
  color: #a7b4c0;
  position: relative;
}
.top-icon .badge {
  position: absolute;
  top: 10px;
  right: 8px;
  min-width: 15px;
  height: 15px;
  padding: 0 4px;
  border-radius: 999px;
  background: #e52e40;
  color: white;
  font-size: 9px;
  display: grid;
  place-items: center;
}
.user {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 0 4px 0 17px;
  min-width: 164px;
}
.avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, #49375e, #272940);
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 10px;
}
.user-meta strong {
  display: block;
  font-size: 12px;
}
.user-meta span {
  font-size: 11px;
  color: #b4bec8;
}
.chev {
  margin-left: auto;
  color: #8797a5;
}
.project-header {
  padding: 16px 20px 0;
  border-bottom: 1px solid var(--line2);
  background: linear-gradient(180deg, rgba(7, 20, 31, 0.82), rgba(7, 18, 29, 0.28));
}
.project-main {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding: 1px 0 12px;
}
.project-identity {
  display: flex;
  gap: 11px;
  align-items: flex-start;
}
.project-icon {
  width: 51px;
  height: 51px;
  border: 1px solid #7153e8;
  border-radius: 7px;
  background: #0c1827;
  display: grid;
  place-items: center;
  box-shadow: inset 0 0 0 1px rgba(130, 86, 255, 0.08);
}
.project-icon svg {
  width: 34px;
  height: 34px;
}
.project-title-line {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 31px;
}
.project-title {
  font-size: 26px;
  line-height: 1;
  font-weight: 760;
  letter-spacing: -0.02em;
}
.star {
  color: #e3e8ed;
}
.project-subtitle {
  color: #a9b5c0;
  font-size: 12px;
  margin-top: 2px;
}
.project-meta {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #8293a3;
  font-size: 10px;
  margin-top: 6px;
}
.project-meta .dot {
  color: #566b7c;
}
.header-buttons {
  display: flex;
  gap: 9px;
}
.hbtn {
  height: 36px;
  border: 1px solid #293b4d;
  background: #0d1b28;
  border-radius: 6px;
  padding: 0 13px;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
.hbtn.primary {
  background: linear-gradient(180deg, #7448e7, #6134c8);
  border-color: #8157eb;
  color: #fff;
}
.hbtn svg {
  width: 15px;
  height: 15px;
}
.tabs {
  height: 45px;
  display: flex;
  align-items: flex-end;
  gap: 4px;
}
.tab {
  height: 45px;
  display: flex;
  align-items: center;
  padding: 0 14px;
  color: #a9b3bc;
  position: relative;
}
.tab.active {
  color: #fff;
  font-weight: 650;
}
.tab.active:after {
  content: "";
  position: absolute;
  left: 5px;
  right: 5px;
  bottom: 0;
  height: 2px;
  background: #7d4cff;
}
.dashboard {
  padding: 12px 12px 14px;
}
.row3 {
  display: grid;
  grid-template-columns: 1.02fr 0.96fr 1.1fr;
  gap: 12px;
}
.row3.second {
  grid-template-columns: 1.02fr 1.06fr 1fr;
  margin-top: 12px;
}
.panel {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(14, 29, 42, 0.93), rgba(11, 25, 37, 0.96));
  border-radius: 6px;
  overflow: hidden;
  min-width: 0;
}
.panel-head {
  height: 40px;
  border-bottom: 1px solid var(--line2);
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 0 14px;
  font-size: 13px;
  font-weight: 650;
}
.panel-head .heading-icon {
  width: 20px;
  height: 20px;
  color: var(--purple2);
}
.panel-head .heading-icon.red {
  color: var(--red);
}
.head-spacer {
  margin-left: auto;
}
.head-link {
  font-size: 10px;
  color: #a774ff;
  font-weight: 500;
}
.count-badge {
  min-width: 19px;
  height: 19px;
  border-radius: 999px;
  background: #bd2635;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 10px;
  font-weight: 700;
}
.goal-list {
  padding: 6px 14px 8px;
}
.goal-row {
  height: 26px;
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr) 58px;
  align-items: center;
  gap: 8px;
}
.circle-check {
  width: 17px;
  height: 17px;
  border: 1px solid #2ed463;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #39d66a;
}
.circle-check svg {
  width: 11px;
  height: 11px;
}
.goal-name {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.status {
  justify-self: end;
  border: 1px solid transparent;
  border-radius: 3px;
  padding: 2px 8px;
  font-size: 9px;
  line-height: 14px;
}
.status.green {
  color: #43d16d;
  background: #0d2c21;
  border-color: #154730;
}
.status.amber {
  color: #ffb422;
  background: #35280f;
  border-color: #5b4110;
}
.status.blue {
  color: #55a8ff;
  background: #102945;
  border-color: #1e426a;
}
.status.purple {
  color: #b998ff;
  background: #2d2053;
  border-color: #4c347c;
}
.panel-foot-link {
  height: 35px;
  display: flex;
  align-items: center;
  padding: 0 15px;
  color: #a775ff;
  font-size: 10px;
}
.attention-list {
  padding: 4px 13px 9px;
}
.attention-row {
  min-height: 42px;
  display: grid;
  grid-template-columns: 9px minmax(0, 1fr) 45px 62px;
  gap: 8px;
  align-items: center;
  border-bottom: 1px solid rgba(26, 45, 61, 0.28);
}
.attention-row:last-child {
  border-bottom: 0;
}
.severity-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.severity-dot.amber {
  background: #ffad17;
}
.severity-dot.blue {
  background: #3f98ef;
}
.priority {
  justify-self: end;
  font-size: 9px;
  border: 1px solid #67302c;
  color: #ff765e;
  background: #29191a;
  border-radius: 3px;
  padding: 2px 8px;
}
.priority.medium {
  border-color: #61480d;
  color: #ffb31c;
  background: #2b220d;
}
.action-btn {
  height: 25px;
  border: 1px solid #6844ba;
  background: linear-gradient(180deg, #6745b9, #523597);
  border-radius: 4px;
  color: white;
  font-size: 10px;
}
.attention-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 7px;
  text-decoration: none;
  white-space: nowrap;
}
.blockers {
  padding: 3px 13px 0;
}
.blocker-row {
  display: grid;
  grid-template-columns: 9px minmax(0, 1fr) 45px 63px;
  gap: 8px;
  padding: 9px 0 8px;
  border-bottom: 1px solid #1d3141;
}
.blocker-row:last-child {
  border-bottom: 0;
}
.blocker-title {
  font-size: 11px;
  margin-bottom: 2px;
}
.blocker-desc {
  color: #8998a6;
  font-size: 10px;
  line-height: 1.3;
}
.blocker-next {
  color: #ff5b52;
  font-size: 10px;
  margin-top: 3px;
}
.resolve {
  height: 25px;
  border: 1px solid #6d45aa;
  border-radius: 4px;
  background: transparent;
  color: #aa7bff;
  font-size: 10px;
}
.table-wrap {
  overflow: hidden;
}
.data-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}
.data-table th {
  font-size: 9px;
  font-weight: 500;
  color: #8795a1;
  text-align: left;
  height: 28px;
  padding: 0 9px;
  border-bottom: 1px solid #203140;
}
.data-table td {
  height: 27px;
  padding: 0 9px;
  border-bottom: 1px solid rgba(26, 44, 59, 0.52);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 9px;
}
.data-table tbody tr:last-child td {
  border-bottom: 0;
}
.plan-name {
  font-size: 9px;
}
.tiny-progress {
  display: flex;
  align-items: center;
  gap: 7px;
}
.bar {
  width: 58px;
  height: 5px;
  background: #1b2e3e;
  border-radius: 99px;
  overflow: hidden;
}
.bar i {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, #7e45e7, #8c5bf0);
  border-radius: 99px;
}
.state-text.blue {
  color: #45a7ff;
}
.state-text.green {
  color: #42cc6d;
}
.run-pill {
  display: inline-flex;
  border: 1px solid #4e3c75;
  background: #302352;
  color: #b99bff;
  border-radius: 3px;
  padding: 2px 6px;
}
.run-pill.planned {
  border-color: #22588c;
  background: #122b46;
  color: #59a8f2;
}
.completed-check {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border: 1px solid #3bd56b;
  color: #3bd56b;
  display: inline-grid;
  place-items: center;
  margin-right: 6px;
  vertical-align: -2px;
}
.completed-check svg {
  width: 10px;
  height: 10px;
}
.queue-panel {
  margin-top: 13px;
}
.queue-head {
  height: 43px;
  border-bottom: 1px solid var(--line2);
  display: flex;
  align-items: center;
  padding: 0 15px;
  font-size: 13px;
  font-weight: 650;
}
.queue-head .head-link {
  margin-left: auto;
}
.queue-cols {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 7px;
  padding: 10px 8px 8px;
}
.queue-col {
  border: 1px solid #1d3142;
  background: #0b1925;
  border-radius: 5px;
  min-width: 0;
  min-height: 211px;
  display: flex;
  flex-direction: column;
}
.queue-col-head {
  height: 37px;
  border-bottom: 1px solid #1a2e3d;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 10px;
  font-size: 11px;
}
.qdot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid currentColor;
  position: relative;
}
.qdot:after {
  content: "";
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: currentColor;
  left: 2px;
  top: 2px;
}
.qdot.green {
  color: #54c66e;
}
.qdot.blue {
  color: #3196ff;
}
.qdot.purple {
  color: #8a50eb;
}
.qdot.amber {
  color: #ffad17;
}
.qdot.red {
  color: #f0444b;
}
.qcount {
  margin-left: auto;
  color: #a9b5c0;
}
.qitems {
  padding: 5px 0;
  flex: 1;
}
.qitem {
  height: 31px;
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr) 100px;
  align-items: center;
  padding: 0 9px;
  border-bottom: 1px solid rgba(24, 43, 58, 0.42);
  font-size: 9px;
}
.qitem .num {
  color: #bdc6ce;
}
.qitem .task {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.qitem .plan {
  justify-self: end;
  color: #8c9ba8;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100px;
}
.qadd {
  height: 31px;
  display: flex;
  align-items: center;
  padding: 0 10px;
  color: #a96fff;
  font-size: 10px;
}
.bottom-status {
  margin-top: 12px;
  height: 43px;
  border: 1px solid var(--line);
  background: #0b1925;
  border-radius: 6px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  padding: 0 13px;
  color: #aab5bf;
}
.health {
  display: flex;
  align-items: center;
  gap: 8px;
}
.health-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #35ba63;
}
.updated {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 9px;
}
.timezone {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 12px;
}
.customize {
  height: 29px;
  border: 1px solid #293c4c;
  background: #0d1b28;
  border-radius: 5px;
  padding: 0 12px;
  display: flex;
  align-items: center;
  gap: 7px;
}
.icon {
  width: 15px;
  height: 15px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.cube-fill {
  fill: #7751ee;
  stroke: #a28cff;
  stroke-width: 1;
}
.nowrap {
  white-space: nowrap;
}
@media (max-width: 1280px) {
  body {
    min-width: 1024px;
  }
  .screen {
    grid-template-columns: 165px minmax(0, 1fr);
  }
  .sidebar {
    width: 165px;
  }
  .topbar {
    grid-template-columns: minmax(210px, 1fr) 390px minmax(260px, 1fr);
    padding: 0 15px;
  }
  .dashboard {
    padding: 10px;
  }
  .row3 {
    gap: 8px;
  }
  .data-table th,
  .data-table td {
    padding-left: 6px;
    padding-right: 6px;
  }
  .qitem {
    grid-template-columns: 16px minmax(0, 1fr) 76px;
  }
  .qitem .plan {
    max-width: 76px;
  }
}
