/* ==========================================================================
   KLONDIKE BOARD LAYOUT (stock/waste + foundations row, 7 tableau columns)
   ========================================================================= */
.table-grid {
  display: flex;
  justify-content: space-between;
  max-width: 950px;
  margin: 0 auto 15px auto;
  padding: 0 2px;
  gap: 15px;
}

.zone {
  flex: 1;
}

.stock-count {
  position: absolute;
  bottom: 2px;
  right: 4px;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.6);
  user-select: none;
}

.recycle-hint {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: rgba(255, 255, 255, 0.35);
  user-select: none;
}

.cascade-row {
  display: flex;
  justify-content: space-between;
  max-width: 950px;
  margin: 10px auto 0 auto;
  padding: 0 2px;
  gap: 4px;
}

.column {
  flex: 1;
  max-width: 100px;
  height: 560px;
  position: relative;
  border-radius: 8px;
  box-sizing: border-box;
  background: rgba(255, 255, 255, 0.02);
}

@media (max-width: 700px) {
  .table-grid {
    gap: 6px;
    margin-bottom: 10px;
  }

  .column {
    height: 420px;
  }
}
