body {
  font-family: Arial, sans-serif;
  background: linear-gradient(to bottom, #7b61ff, #33b1ff);
  color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  margin: 0;
}

.booking-page header h2 {
  color: white;
  font-size: 24px;
  text-align: center;
  margin-top: 20px;
}

.booking-card {
  background-color: #f8f9fa;
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  width: 320px;
  margin: 20px;
}

.booking-logo {
  height: 50px;
  border-radius: 10px;
  margin-bottom: 10px;
}

.booking-info {
  margin: 15px 0;
  text-align: left;
}

.booking-info label {
  font-weight: bold;
  display: block;
  margin-bottom: 5px;
}

.booking-info input {
  width: 100%;
  padding: 8px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 16px;
}

.btn.confirm {
  background: linear-gradient(to right, #7b61ff, #33b1ff);
  color: white;
  font-weight: bold;
  padding: 10px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  font-size: 18px;
  margin-top: 15px;
}

.btn.confirm:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

a {
  text-decoration: none;
}