body { font-family: Arial; }

.card {
  width: 95%;
  max-width: 1100px;
  margin: 40px auto;
  text-align: center;
}

.site-buttons { margin-bottom:10px; }

.parking { display:none; }
.parking.active { display:block; }

.container {
  display: grid;
  grid-template-columns: repeat(10, max-content);
  gap: 4px;
  justify-content: center;
}


.spot {
  width: 28px;
  height: 55px;
  font-size: 10px;
  display:flex;
  align-items:center;
  justify-content:center;
  border:1px solid #ccc;
}

.spot:not(.booked){ background:#d2f8d2; }
.spot.booked{ background:#ff6b6b; color:white; }
.spot.pending{ background:#ffe58a; }
.spot.selected{ outline:2px solid blue; }

.control-panel { margin-top:10px; }

.swatch { width:15px; height:10px; display:inline-block; }
.available { background:#d2f8d2; }
.booked { background:#ff6b6b; }

.abbreviation-key {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  width: 100%;
  text-align: center;
  margin-bottom: 10px;
}

.legend {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-bottom: 10px;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 5px;
}

.swatch {
  width: 18px;
  height: 12px;
  display: inline-block;
}

.swatch.available {
  background: #d2f8d2;
}

.swatch.booked {
  background: #ff6b6b;
}