#colormaps-container {
  z-index: 100;
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}

/* Wrapper: barra + rótulos lado a lado */
.colormap-wrapper {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 5px;
}

/* Barra de gradiente — estreita e alta */
.colormap {
  width: 16px;
  height: 300px;
  border-radius: 8px;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.5);
  flex-shrink: 0;
}

/* Coluna de rótulos */
.colormap-ticks {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 300px;
  padding: 2px 0;
}

.colormap-tick {
  font-size: 11px;
  font-weight: 600;
  color: #1e293b;
  line-height: 1;
  text-shadow: 0 0 3px #fff, 0 0 3px #fff;
  white-space: nowrap;
}

.colormap-tick-unit {
  font-size: 10px;
  font-weight: 700;
  color: #475569;
}

.colormap-label {
  font-size: 11px;
  font-weight: bold;
  color: #1e293b;
  text-shadow: 0 0 3px #fff, 0 0 3px #fff;
  white-space: nowrap;
  writing-mode: vertical-lr;
  transform: rotate(180deg);
  display: none;
}

.template {
  display: none;
}
