.projection-confidence {
  display: inline-flex;
  align-items: center;
  height: 37px;
  padding: 0 12px;
  border-radius: 9px;
  background: var(--green-2);
  color: var(--green);
  font-size: 9px;
  font-weight: 700;
}

.projection-chart-card {
  margin-bottom: 18px;
}

.projection-bars {
  display: flex;
  align-items: end;
  gap: 9px;
  min-height: 260px;
  overflow-x: auto;
  padding: 12px 4px 5px;
}

.projection-column {
  display: grid;
  grid-template-rows: 18px 180px 16px 14px;
  flex: 1 0 68px;
  align-items: end;
  text-align: center;
}

.projection-value {
  overflow: hidden;
  color: var(--muted);
  font-size: 7px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.projection-track {
  position: relative;
  height: 170px;
  border-bottom: 1px solid var(--line);
}

.projection-track::before,
.projection-track::after {
  position: absolute;
  right: 0;
  left: 0;
  height: 1px;
  background: var(--line);
  content: '';
}

.projection-track::before {
  top: 33%;
}

.projection-track::after {
  top: 66%;
}

.projection-track i {
  position: absolute;
  right: 7px;
  bottom: 0;
  left: 7px;
  z-index: 1;
  min-height: 5px;
  border-radius: 7px 7px 2px 2px;
  background: #d8cfd5;
}

.projection-track i.future {
  background: linear-gradient(180deg, #8b4d81, #6c3966);
  box-shadow: 0 4px 12px rgba(108, 57, 102, .18);
}

.projection-column b {
  font-size: 8px;
}

.projection-column small {
  color: var(--muted);
  font-size: 7px;
}

.projection-detail-grid {
  grid-template-columns: minmax(0, 2.2fr) minmax(300px, .8fr);
  align-items: start;
}

.projection-detail-grid .table-card {
  overflow-x: auto;
}

.projection-table {
  min-width: 1180px;
}

.projection-table .positive {
  color: var(--green);
}

.projection-table .negative {
  color: var(--red);
}

.methodology-card .memory-row {
  grid-template-columns: 1fr 1.35fr auto;
}

.projection-note {
  margin-top: 16px;
  padding: 12px;
  border-radius: 9px;
  background: #f8f3f7;
  color: var(--muted);
  font-size: 9px;
  line-height: 1.55;
}

@media (max-width: 1100px) {
  .projection-detail-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .projection-bars {
    min-height: 220px;
  }

  .projection-column {
    grid-template-rows: 18px 145px 16px 14px;
  }

  .projection-track {
    height: 138px;
  }
}
