
.map-panel {
  position: absolute;
  left: 189px;
  top: 183px;
  width: 1108px;
  height: 400px;
  overflow: hidden;
}

.map-panel::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    radial-gradient(ellipse at 51% 82%, rgba(0, 211, 255, 0.45), transparent 17%),
    repeating-linear-gradient(0deg, rgba(65, 145, 231, 0.12) 0 1px, transparent 1px 20px),
    repeating-linear-gradient(90deg, rgba(65, 145, 231, 0.1) 0 1px, transparent 1px 20px);
}

.panel-heading {
  position: absolute;
  z-index: 3;
  left: 20px;
  top: 13px;
  display: flex;
  align-items: center;
  gap: 16px;
}

h2 {
  margin: 0;
  color: #cdeaff;
  font-size: 18px;
  font-weight: 800;
}

.map-legend {
  position: absolute;
  z-index: 4;
  right: 22px;
  bottom: 10px;
  display: flex;
  gap: 14px;
  align-items: center;
  height: 32px;
  padding: 0 13px;
  border-radius: 8px;
  background: rgba(5, 31, 72, 0.78);
}

.legend-item {
  display: flex;
  gap: 6px;
  align-items: center;
  height: 24px;
  padding: 0 7px;
  border: 1px solid transparent;
  border-radius: 4px;
  color: #b9d6f1;
  font-size: 12px;
  line-height: 24px;
}

.legend-item:hover,
.legend-item.is-active {
  border-color: rgba(91, 180, 255, 0.68);
  background: rgba(25, 91, 170, 0.44);
  color: #e4f5ff;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
}

.workbench {
  position: absolute;
  left: 189px;
  top: 594px;
  width: 1108px;
  height: 341px;
  padding: 12px 18px;
}

.workbench h2::before {
  content: "‹ ";
  color: var(--cyan);
}

.workbench-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
  margin-top: -8px;
}

.task-column {
  min-width: 0;
  height: 279px;
  padding: 10px;
  overflow: hidden;
  border: 1px solid rgba(41, 128, 214, 0.5);
  border-radius: 5px;
  background: rgba(1, 20, 48, 0.56);
}

.column-title {
  display: flex;
  gap: 11px;
  align-items: center;
  margin-bottom: 9px;
  font-size: 18px;
  font-weight: 900;
}

.column-title span:last-child {
  color: var(--cyan);
}

.task-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 58px;
  grid-template-rows: 16px 15px 22px;
  gap: 2px 8px;
  align-content: center;
  min-width: 0;
  height: 71px;
  margin-bottom: 9px;
  padding: 7px 10px 7px 11px;
  overflow: hidden;
  border: 1px solid rgba(48, 138, 226, 0.34);
  border-radius: 5px;
  background: linear-gradient(90deg, rgba(7, 42, 89, 0.88), rgba(4, 28, 65, 0.55));
}

.task-card.orange {
  border-color: rgba(255, 157, 47, 0.48);
  background: linear-gradient(90deg, rgba(68, 37, 24, 0.72), rgba(12, 31, 61, 0.56));
}

.task-card.green {
  border-color: rgba(44, 213, 132, 0.4);
}

.task-title {
  display: grid;
  grid-column: 1;
  grid-row: 1;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 7px;
  align-items: center;
  font-size: 13px;
  font-weight: 800;
  line-height: 16px;
  white-space: nowrap;
}

.task-name {
  overflow: hidden;
  text-overflow: ellipsis;
}

.pill {
  padding: 2px 8px;
  border-radius: 10px;
  background: rgba(45, 124, 212, 0.28);
  color: #a8d7ff;
  font-size: 11px;
  font-weight: 700;
}

.task-status {
  grid-column: 2;
  grid-row: 1;
  align-self: center;
  justify-self: end;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  line-height: 16px;
  white-space: nowrap;
}

.task-meta {
  grid-column: 1;
  margin: 0;
  font-size: 11px;
  line-height: 15px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.task-meta:nth-of-type(3) {
  grid-row: 2;
}

.task-meta:nth-of-type(4) {
  grid-row: 3;
  align-self: center;
}

.task-meta strong {
  color: var(--gold);
  font-size: 12px;
}

.task-action {
  grid-column: 2;
  grid-row: 2 / span 2;
  align-self: center;
  justify-self: end;
  width: 58px;
  height: 28px;
  border: 1px solid rgba(53, 149, 255, 0.72);
  border-radius: 4px;
  background: rgba(20, 73, 145, 0.55);
  font-size: 12px;
  font-weight: 800;
}

.view-all {
  margin-top: 4px;
  color: var(--cyan);
  text-align: center;
  font-size: 13px;
}
