body {
  font-family: sans-serif;
  background: #f9f9f9;
  padding: 2rem;
  display: flex;
  justify-content: center;
}
.container {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  max-width: 400px;
  width: 100%;
  text-align: center;
}
.logo {
  width: 80px;
  margin-bottom: 1rem;
}
#payment-element {
  margin: 1.5rem 0;
}
#submit {
  margin-top: 20px;
  padding: 10px 20px;
  background: #06c167;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  width: 100%;
  font-size: 16px;
  font-weight: 600;
}
#submit:hover {
  background: #059d52;
}
#submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
#payment-message {
  margin-top: 1rem;
  min-height: 20px;
  color: #d32f2f;
  text-align: center;
}
.info-box {
  background: #eef5eb;
  color: #333;
  border: 1px solid #cce5cc;
  padding: 10px;
  margin-bottom: 1rem;
  border-radius: 4px;
  font-size: 0.95rem;
}

.booking-info {
  background: #f8f9fa;
  color: #333;
  border: 1px solid #dee2e6;
  padding: 15px;
  margin-bottom: 1rem;
  border-radius: 4px;
  font-size: 0.95rem;
  text-align: left;
}

.booking-info h3 {
  margin-top: 0;
  font-size: 1rem;
  color: #495057;
}

.booking-info strong {
  color: #212529;
  font-weight: 600;
}
.success-message {
  background: #eef5eb;
  color: #333;
  border: 1px solid #cce5cc;
  padding: 20px;
  margin-top: 1rem;
  border-radius: 8px;
  text-align: center;
}
