/* Extracted from one-way-drop-taxi-in-kalasapakkam.php */

.input {
         width: -webkit-fill-available;
         height: 56px;
         background-color: transparent;
         border: none;
         outline: none;
         color: #000 !important;
      }
      .highlight:after, input[type="radio"]:checked + .radio-wrapper {
          background-color: #1ECB15 !important;
      }
      .wrv76wo, .radio-wrapper {
          border: 2px solid #1ECB15 !important;
      }
      input[type=text]:not(.browser-default) {
          height: 28px !important;
          margin: 0 !important;
      }
      .modal {
          background-color: unset !important;
          max-height: unset !important;
      }

/* Container for the pill-style radio buttons */
   .radio-container {
     display: flex;
     justify-content: left;
     gap: 10px;
     margin-bottom: 10px;
   }

   /* Style for the radio button */
   .radio-wrapper {
     display: block;
     border-radius: 10px;
     border: 2px solid #c1f11d; /* Blue border */
     padding: 8px 20px;
     background-color: #fff;
     cursor: pointer;
     transition: background-color 0.3s ease, color 0.3s ease;
     font-size: 16px;
     text-align: center;
     user-select: none;
     color: #000;
   }

   /* Active/Checked style for the pill */
   input[type="radio"]:checked + .radio-wrapper {
     background-color: #c1f11d; /* Active background color */
     color: #000; /* Active text color */
   }
   input[type="radio"] + .radio-wrapper {
     color: #000; /* Active text color */
   }

   /* Unchecked pill style */
   .radio-wrapper:hover {
     background-color: #f0f0f0;
   }

   /* Hide the default radio button */
   input[type="radio"] {
     display: none;
   }
   button:focus {
       background-color: #1ECB15 !important;
   }

/* General styles */
.car-stats-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px;
  /*background-color: #f8f8f8;*/
}

.car-stats-content h1 {
  font-size: 35px;
  font-weight: normal;
  line-height: 1.5;
  margin-bottom: 20px;
}

.car-stats-content h1 span {
  color: #00b140; /* Green color for highlighted text */
  font-weight: bold;
}

.car-stats-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* Two items per row */
  gap: 20px;
  margin-bottom: 20px;
}

.car-stats-item {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  min-height: 150px;
max-width: 250px;
}

.car-stats-number {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #000;
}

.car-stats-label {
  font-size: 16px;
  font-weight: normal;
  color: #00b140;
}

/* Mobile image styles */
.car-stats-image img {
  max-width: 100%;
  border-radius: 8px;
}

/* Desktop styles */
@media (min-width: 768px) {
  .car-stats-container {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    justify-content: space-between;
  }

  .car-stats-content {
    flex: 1;
  }

  .car-stats-stats {
    grid-template-columns: repeat(2, 1fr); /* Two items per row for desktop as well */
    gap: 20px;
  }

  .car-stats-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
  }

  .car-stats-image img {
    max-width: 80%;
  }
}

/* Ride Options Container */
.ride-options-container {
  max-width: 600px;
  margin: 0 auto;
  font-family: Arial, sans-serif;
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Ride Summary Section */
.ride-summary {
  padding: 16px;
  background-color: #fff5cc;
  border-bottom: 1px solid #eee;
}

.ride-distance {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ride-icon {
  width: 20px;
  height: 20px;
}

.ride-distance-text {
  font-size: 16px;
  font-weight: bold;
  color: #444;
  padding-top: 20px;
}

.ride-features {
  list-style: none;
  margin: 8px 0 0;
  padding: 0;
  color: #444;
  font-size: 14px;
}

.ride-features li {
  margin: 4px 0;
}

/* Ride Option Card */
.ride-option {
  display: flex;
  align-items: center;
  padding: 16px;
  border-top: 1px solid #eee;
}

.ride-option-icon {
  width: 40px;
  height: 40px;
  margin-right: 16px;
}

.ride-option-info {
  flex: 1;
}

.ride-option-info h3 {
  margin: 0;
  font-size: 16px;
  font-weight: bold;
  color: #000;
}

.ride-option-info p {
  margin: 4px 0;
  font-size: 14px;
  color: #555;
}

.ride-option-price {
  font-size: 16px;
  font-weight: bold;
  color: #000;
  white-space: nowrap;
  text-align: right;
}

@media (min-width: 641px) and (max-width:1280px) {
    .flex-pos { 
        grid-column: span 3 !important;
    }
}
.custom-input {
    position: relative;
}

.custom-input .placeholder {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: #aaa;
}

.custom-input input:valid + .placeholder {
    display: none; /* Hide placeholder when input has value */
}

.overlay-bg{
        /*background:white !important;*/
}
