/* style.css */
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: #f0f4f8;
  color: #333;
}

.container {
  max-width: 800px;
  margin: 40px auto;
  text-align: center;
  padding: 20px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

h1 {
  margin-bottom: 20px;
  color: #005f73;
}

.dropdowns select {
  margin: 10px;
  padding: 10px;
  font-size: 16px;
  border-radius: 8px;
  border: 1px solid #ccc;
}

.seats {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.seat {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  background-color: #94d2bd;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.3s;
}

.seat:hover {
  transform: scale(1.1);
  background-color: #52b788;
}

.seat.booked {
  background-color: #ccc;
  cursor: not-allowed;
}

.modal {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.5);
  justify-content: center;
  align-items: center;
}

.modal-content {
  background: white;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  width: 300px;
  position: relative;
}

#closeModal {
  position: absolute;
  right: 15px;
  top: 10px;
  font-size: 20px;
  cursor: pointer;
}

#employeeId {
  width: 90%;
  padding: 10px;
  margin-top: 15px;
  border-radius: 6px;
  border: 1px solid #ccc;
}

#confirmBooking {
  margin-top: 15px;
  padding: 10px 20px;
  background-color: #0077b6;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}
#confirmBooking:hover {
  background-color: #0096c7;
}

/* admin styles */

table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

thead {
  background-color: #0077b6;
  color: white;
}

th, td {
  padding: 10px;
  border: 1px solid #ddd;
  text-align: center;
}

tbody tr:nth-child(even) {
  background-color: #f0f4f8;
}

#bookingStats {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 8px rgba(0,0,0,0.1);
}

#bookingStats h3 {
  margin-bottom: 10px;
  color: #333;
}

#bookingStats ul {
  list-style: none;
  padding-left: 0;
}

#bookingStats li {
  margin: 6px 0;
  font-size: 16px;
  color: #444;
}
