body {
  font-family: "Poppins", sans-serif;
  background: #f9fafb;
  margin: 0;
  padding: 0;
}

.fare-estimator {
  padding: 4rem 1rem;
  text-align: center;
}

.container-fare {
  max-width: 600px;
  margin: 0 auto;
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

h1 {
  font-size: 32px;
  margin-bottom: 2rem;
  color: #333;
}

form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

input,
select {
  padding: 0.75rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 6px;
}

button {
  padding: 0.75rem;
  background-color: #dc3223;
  color: white;
  font-weight: bold;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

button:hover {
  background-color: #b71c1c;
}

.fare-result {
  margin-top: 2rem;
  font-size: 1.2rem;
  font-weight: 600;
  color: #333;
}

.fare-info {
  background-color: #f9f9f9;
  padding: 1.5rem;
  margin-top: 2rem;
  border-left: 5px solid var(--primary-red);
  border-radius: 8px;
  font-size: 0.95rem;
  text-align: center; /* ✅ Center the content */
}

.fare-info p {
  margin: 0 0 0.5rem;
}

.fare-info ul {
  margin: 0;
  padding-left: 0; /* ✅ Remove default left padding */
  list-style: none; /* ✅ Remove bullet points if desired */
  text-align: center; /* ✅ Center list text */
}

.fare-info ul li {
  margin-bottom: 0.25rem;
}

.fare-info a {
  color: var(--primary-blue);
  font-weight: 600;
  text-decoration: underline;
}
