/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */
.nitya-booking-wrapper {
  max-width: 400px;
  margin: 50px auto;
  background-color: #0f0f0f;
  padding: 30px 25px;
  border-radius: 10px;
  text-align: center;
  color: #fff;
  font-family: Arial, sans-serif;
}

.nitya-booking-wrapper h4 {
  margin: 0 0 5px;
  font-weight: 400;
  color: #ddd;
  font-size: 14px;
}

.nitya-booking-wrapper h2 {
  margin: 0 0 20px;
  font-size: 20px;
  font-weight: bold;
}

.nitya-booking-wrapper select {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border-radius: 5px;
  border: none;
  font-size: 15px;
}

.nitya-booking-wrapper button {
  width: 100%;
  padding: 14px;
  background-color: #e6bb14;
  color: #fff;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
  /* transition: background 0.3s ease; */
}

.nitya-booking-wrapper button:hover {
  background-color: #c8ac13;
}

.nitya-car-listing {
  max-width: 800px;
  margin: 30px auto;
  padding: 0 15px;
}

.nitya-car-listing h2 {
  text-align: center;
  font-size: 22px;
  margin-bottom: 30px;
  font-weight: bold;
}

.nitya-car-card {
  display: flex;
  align-items: center;
  background: #fff;
  padding: 15px;
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
  justify-content: space-between;
  flex-wrap: wrap;
}

.nitya-car-card img {
  width: 130px;
  height: 80px;
  object-fit: contain;
  margin-right: 15px;
}

.nitya-car-details {
  flex: 1;
  min-width: 200px;
}

.nitya-car-details h4 {
  margin: 0 0 5px;
  font-weight: bold;
}

.nitya-car-details p {
  margin: 3px 0;
  font-size: 14px;
  color: #333;
}

.nitya-car-icons {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 5px;
}

.nitya-car-price {
  text-align: right;
  min-width: 150px;
}

.nitya-car-price h3 {
  color: #000;
  margin: 0;
  font-size: 18px;
}

.nitya-car-price small {
  color: #777;
  font-size: 12px;
}

.nitya-car-price a {
  display: inline-block;
  margin-top: 8px;
  background: #e6bb14;
  color: #fff;
  padding: 8px 12px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
  /* transition: background 0.3s; */
}

.nitya-car-price a:hover {
  background: #c8ac13;
}
.nitya-car-icons {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 5px;
}

.nitya-car-icons span {
  font-size: 14px;
  color: #000;
}

.nitya-car-icons i {
  margin-right: 5px;
}

/* booking page  */
.nitya-form-wrapper {
  max-width: 600px;
  margin: 40px auto;
  padding: 30px;
  background: #ffffff;
  border: 1px solid #ddd;
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.05);
  font-family: "Segoe UI", sans-serif;
}

.nitya-booking-heading {
  text-align: center;
  font-size: 26px;
  margin-bottom: 25px;
  color: #333;
}

.nitya-details-box {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 15px;
  margin-bottom: 30px;
}

.nitya-details-box div {
  display: flex;
  justify-content: space-between;
  padding: 10px 15px;
  background: #f8f8f8;
  border-radius: 6px;
  font-size: 15px;
  color: #444;
  align-items: center;
}

.nitya-details-box div span {
  font-weight: bold;
  color: #222;
  min-width: 140px;
}

.nitya-booking-button-wrap {
  text-align: center;
}

.nitya-confirm-btn {
  background-color: #e6bb14;
  color: #fff;
  padding: 14px 30px;
  font-size: 16px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  border: none;
  /* transition: background 0.3s ease; */
}

.nitya-confirm-btn:hover {
  background-color: #e6bb14; /* No change on hover */
  cursor: pointer;
}

.nitya-confirm-btn:focus,
.nitya-confirm-btn:active {
  outline: none;
  box-shadow: none;
}

.nitya-error {
  text-align: center;
  /* color: red; */
  font-weight: bold;
}

/* Highlighted Pickup & Drop rows */
.nitya-details-box .highlighted {
  background: #fffbe6;
  border-left: 5px solid #e6bb14;
  font-size: 16px;
  font-weight: bold;
  color: #222;
}
.nitya-details-box .highlightPrice {
  background: #d3f1dd;
  border-left: 5px solid #49cc90;
  font-size: 16px;
  font-weight: bold;
  color: #222;
}

/* Confirm Booking button – prevent blue text on hover */
.nitya-confirm-btn {
  background-color: #e6bb14;
  color: #fff !important;
  padding: 14px 30px;
  font-size: 16px;
  border-radius: 8px;
  text-decoration: none !important;
  font-weight: 600;
  display: inline-block;
  border: none;
  transition: none;
}

.nitya-confirm-btn:hover,
.nitya-confirm-btn:focus,
.nitya-confirm-btn:active {
  background-color: #e6bb14;
  color: #fff !important;
  outline: none;
  box-shadow: none;
  text-decoration: none;
  cursor: pointer;
}
.nitya-phone-group {
  display: flex;
  gap: 10px;
  align-items: center;
}

.nitya-phone-code {
  padding: 8px 12px;
  background: #eee;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 14px;
  color: #333;
}

#phone-error {
  display: none;
  color: red;
  font-size: 13px;
  margin-top: 4px;
}
