/* _common/legend.css — 세로 legend strip */

.legend-strip {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  width: 46px;
  flex-shrink: 0;
  padding: 8px 6px 8px 4px;
  box-sizing: border-box;
}

/* Legend2 (W13 표준) */
.legend-bar-vertical {
  width: 14px;
  height: 400px;
  flex-shrink: 0;
  border-radius: 2px;
  border: 1px solid #444;
}

.legend-labels-vertical {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 400px;
  font-size: 9px;
  color: #888;
  padding: 0 0 0 4px;
  font-family: monospace;
}

html.day .legend-labels-vertical { color: #444; }