
#booking-form {
  max-width: 500px;
  margin: 30px auto;
  padding: 25px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  font-family: 'Arial', sans-serif;
}

#booking-form h3 {
  color: #2c3e50;
  text-align: center;
  margin-bottom: 20px;
  font-size: 1.5rem;
  padding-bottom: 10px;
  border-bottom: 2px solid #f1f1f1;
}

#booking-form label {
  display: block;
  margin-bottom: 15px;
  color: #555;
  font-weight: 500;
}

#booking-form input {
  width: 100%;
  padding: 12px 15px;
  margin-top: 5px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 1rem;
  transition: border-color 0.3s;
  box-sizing: border-box;
}

#booking-form input:focus {
  border-color: #3498db;
  outline: none;
  box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
}

#booking-form button {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, #3498db, #2980b9);
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 10px;
}

#booking-form button:hover {
  background: linear-gradient(135deg, #2980b9, #3498db);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

#result {
  max-width: 500px;
  margin: 20px auto;
  padding: 15px;
  background: #e8f7ee;
  border-left: 4px solid #2ecc71;
  border-radius: 4px;
  color: #27ae60;
  font-weight: 500;
}

/* Back link styling */
body>a {
  display: inline-block;
  margin: 20px 0;
  padding: 8px 15px;
  background: #f1f1f1;
  color: #333;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.2s;
}

body>a:hover {
  background: #e0e0e0;
}