/* 樓層標示固定採橫向「數字＋樓」，避免直排造成數字與文字顛倒。 */
.floor {
  grid-template-columns: 48px 1fr;
}

.floor-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  writing-mode: horizontal-tb;
  white-space: nowrap;
}

.floor-label strong {
  color: var(--navy);
  font-size: 17px;
  line-height: 1;
}

.floor-label span {
  margin-top: 4px;
  font-size: 10px;
  font-weight: 800;
}
