/* booking.css */

/* Your existing CSS styles */
body {
  background-color: #FF6F00 !important; /* Force the background color */
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.form-container {
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 15px;
  padding: 2rem;
  max-width: 700px;
  margin: 2rem auto;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.form-header {
  font-size: 1.5rem;
  font-weight: bold;
  color: #333;
  text-align: center;
  margin-bottom: 1rem;
}

.form-control,
.form-select {
  border-radius: 10px;
  border: 1px solid #ccc;
  padding: 0.8rem;
}

.btn-find-driver {
  background-color: #28a745;
  color: white;
  padding: 0.8rem 1.5rem;
  font-size: 1.2rem;
  border-radius: 10px;
  border: none;
  transition: background 0.3s ease-in-out;
  width: 100%;
}

.btn-find-driver:hover {
  background-color: #218838;
}

#fareDisplay {
  font-size: 1.2rem;
  font-weight: bold;
  color: #28a745;
  text-align: center;
  margin-top: 1rem;
}

#distanceTimeDisplay {
  font-size: 1rem;
  color: #555;
  text-align: center;
  margin-top: 0.5rem;
}

.alert-message {
  color: red;
  text-align: center;
  margin-top: 1rem;
  font-weight: bold;
}
