.floorplan-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.tisch {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  border: 2px solid;
  padding: 4px 6px;
  min-width: 50px;
  min-height: 50px;
  transition: transform 0.15s, box-shadow 0.15s;
  cursor: default;
  user-select: none;
}

.tisch:hover {
  transform: scale(1.08);
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.tisch.free {
  background: #d1fae5;
  border-color: #6ee7b7;
  color: #065f46;
}

.tisch.occupied {
  background: #fed7aa;
  border-color: #fb923c;
  color: #7c2d12;
}

.tisch.plaetze-2 { min-width: 46px; min-height: 46px; }
.tisch.plaetze-4 { min-width: 54px; min-height: 54px; }
.tisch.plaetze-6 { min-width: 62px; min-height: 62px; }

.tisch-nr {
  font-weight: 700;
  font-size: 13px;
  line-height: 1.2;
  letter-spacing: -0.3px;
}

.tisch-info {
  font-size: 10px;
  opacity: 0.65;
  line-height: 1.2;
}

.tisch.droppable {
  cursor: copy;
}

.tisch.drag-over {
  border-color: #4a7c59;
  background: #bbf7d0;
  box-shadow: 0 0 0 3px rgba(74, 124, 89, 0.35);
  transform: scale(1.15);
}
