#booking-app {
  max-width: 450px;
  padding: 20px;
  background: #f7f7f7;
  border-radius: 10px;
  font-family: Arial, sans-serif;
}

#booking-app label {
  margin-top: 10px;
  display: block;
  font-weight: bold;
}

#booking-app input, #booking-app select {
  width: 100%;
  padding: 8px;
  margin-top: 5px;
}

#booking-app button {
  margin-top: 15px;
  padding: 10px;
  width: 100%;
  background: #0073e6;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.booking-item, .admin-item {
  background: white;
  padding: 10px;
  margin-top: 10px;
  border-radius: 5px;
  border: 1px solid #ccc;
}