
body {
  font-family: Arial, sans-serif;
  background: #111;
  color: #fff;
  display: flex;
  gap: 30px;
  padding: 20px;
}

/* ===== SEAT SECTION ===== */
.seat-container { width: 60%; }

.screen {
  background: #ccc;
  height: 30px;
  margin: 10px 0;
  border-radius: 5px;
  text-align: center;
  color: #000;
  line-height: 30px;
}

.row { display: flex; justify-content: center; margin: 6px 0; }

.seat {
  width: 28px;
  height: 28px;
  background: #444;
  margin: 5px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.seat.selected { background: #6feaf6; color:#000; }

/* ===== FOOD / ORDER PANEL ===== */
.food-container {
  width: 35%;
  background: #1e1e1e;
  padding: 20px;
  border-radius: 10px;
}

.food-item {
  display: flex;
  justify-content: space-between;
  margin: 12px 0;
}

button { padding: 5px 10px; cursor: pointer; }

.book-btn {
  width: 100%;
  margin-top: 15px;
  padding: 10px;
  background: #e50914;
  border: none;
  color: #fff;
  font-size: 16px;
}

/* ===== ORDERS ===== */
.orders {
  margin-top: 25px;
  border-top: 1px solid #444;
  padding-top: 15px;
}

.order-card {
  background: #2a2a2a;
  padding: 10px;
  border-radius: 8px;
  margin-bottom: 10px;
  font-size: 13px;
}

.tick-btn {
  background: #2ecc71;
  border: none;
  padding: 4px 8px;
  cursor: pointer;
}

.clear-btn {
  width: 100%;
  margin-top: 10px;
  background: #555;
  color: #fff;
  border: none;
  padding: 6px;
}

/* ===== POPUP ===== */
.popup {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  display: none;
  align-items: center;
  justify-content: center;
}

.popup-content {
  background: #fff;
  color: #000;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  width: 300px;
}
