/* ======================
   SEATS
====================== */
.seat-wrap{
  background:#fff;
  padding:16px;
  border-radius:14px;
}

.screen{
  background:#ddd;
  text-align:center;
  padding:8px;
  font-weight:600;
  margin-bottom:14px;
}

.seat-row{
  display:flex;
  align-items:center;
  margin-bottom:6px;
}

.row-label{
  width:22px;
  font-size:12px;
  font-weight:600;
}

.seat{
  width:30px;
  height:30px;
  margin:3px;
  border-radius:6px;
  border:1px solid #ccc;
  font-size:11px;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
}

.seat.available{background:#fff}
.seat.booked{background:#ccc;cursor:not-allowed}
.seat.selected{background:#4caf50;color:#fff}
