html, body {
  height: 100%;
  background: #f9f9f9;
  font-family: 'Segoe UI', Arial, sans-serif;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}
body {
  min-height: 100vh;
  min-width: 100vw;
  background: #f9f9f9;
  font-family: 'Segoe UI', Arial, sans-serif;
  margin: 0;
  padding: 0;
}


.bg-primary
{
  background-color: #41D5FB;
}


.outbound-trip
{
  margin: 15px 10px 0px 0px;
  text-transform: uppercase;
  font-size: calc(0.9rem + .9vw);
}



.summary-grid {
  width: 100%;
  max-width: 400px;
  margin: 20px auto;
  padding-left: 20px;
  border-left: 2px solid #00c9a7; /* Vertical timeline line */
  font-family: "Segoe UI", Arial, sans-serif;
}

.summary-item {
  position: relative;
  padding: 12px 0 12px 15px;
}

.summary-item::before {
  content: "";
  position: absolute;
  left: -8px;
  top: 16px;
  width: 12px;
  height: 12px;
  background: #fff;
  border: 2px solid #ccc; /* Default grey for stops */
  border-radius: 50%;
}

/* First Item (Pickup) */
.summary-item:first-child::before {
  border-color: #00c9a7;
  background: #00c9a7;
}

/* Last Item (Drop-off) */
.summary-item:last-child::before {
  border-color: #00c9a7;
  background: #00c9a7;
}

.summary-label {
  font-size: 13px;
  font-weight: bold;
  color: #222;
  text-transform: uppercase;
  display: block;
}

.summary-value {
  font-size: 14px;
  color: #5a5a5a;
  margin-top: 3px;
  display: block;
}
















.email-otpinput
{
  margin-bottom: 15px;
}


.or-divider {
  display: flex;
  align-items: center;
  text-align: center;
  margin: 20px 0; /* adjust spacing as needed */
}

.or-divider::before,
.or-divider::after {
  content: "";
  flex: 1;
  border-bottom: 1px solid #ddd; /* light gray line */
}

.or-divider:not(:empty)::before {
  margin-right: 10px; /* space between line and text */
}

.or-divider:not(:empty)::after {
  margin-left: 10px; /* space between line and text */
}

.or-divider span {
  font-weight: 500;
  color: #666; /* adjust text color */
  font-size: 14px; /* adjust size as needed */
}



































/* RETURN TRIP UI BOX DESIGN */

.return-trip-container {
  background: #f9feff;
  border: 2px dashed #13b7f3;
  border-radius: 12px;
  padding: 10px 34px 10px 26px;
  display: flex;
  align-items: center;
  max-width: 100%;
  min-width: 300px;
  margin: 10px 10px 0px 10px;
  box-sizing: border-box;
}

.return-trip-checkbox {
  accent-color: #13b7f3;
  width: 24px;
  height: 24px;
  margin-right: 22px;
  flex-shrink: 0;
  margin-left: 2px;
}

.return-trip-label {
  display: flex;
  align-items: center;
  width: 100%;
  cursor: pointer;
}

.return-trip-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-right: 24px;
}

.return-trip-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: #2086d9;
  line-height: 1;
}

.return-trip-sub {
  font-size: 0.8rem;
  font-weight: 400;
  color: #2097e5;
  margin-top: 5px;
  line-height: 1.15;
}

.return-trip-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
}















































/* Child Seats Add-on Styles */
.d-block
{
	margin-left: 10px;
}

.fw-bold
{
	margin-left: 0px;
}

.addon-option {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    margin-top: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    border: 1px solid #e3e8f2;
	margin: 10px;
}

.addon-toggle {
    display: none;
}

.addon-toggle-label {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    background: #fff;
    cursor: pointer;
    font-weight: 600;
    color: #222B45;
    transition: all 0.2s ease;
    gap: 12px;
}

.addon-toggle-label:hover {
    background: #f8fafc;
}

.custom-checkbox {
    width: 20px;
    height: 20px;
    border: 2px solid #41D5FB;
    border-radius: 5px;
    display: inline-block;
    position: relative;
    transition: all 0.2s;
}

.addon-toggle:checked + .addon-toggle-label .custom-checkbox {
    background-color: #41D5FB;
}

.addon-toggle:checked + .addon-toggle-label .custom-checkbox::after {
    content: '';
    position: absolute;
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.addon-title {
    flex: 1;
}

.child-seats-options {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.addon-toggle:checked ~ .child-seats-options {
    max-height: 300px;
}

.seat-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    border-top: 1px solid #f0f0f0;
}

.seat-option:first-child {
    border-top: none;
}

.seat-info {
    display: flex;
    align-items: center;
    flex: 1;
}

.seat-icon {
    width: 40px;
    height: 40px;
    background: #f5f5f5;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 14px;
    color: #555;
}

.seat-details {
    flex: 1;
}

.seat-details strong {
    display: block;
    font-size: 0.95rem;
    color: #222;
    margin-bottom: 3px;
}

.seat-details span {
    font-size: 0.85rem;
    color: #666;
}

.seat-quantity {
    display: flex;
    align-items: center;
    gap: 10px;
}

.quantity-btn {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    border: 1px solid #e3e8f2;
    background: #fff;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
}

.quantity-btn:hover {
    background: #f5f5f5;
}

.quantity-btn:active {
    background: #e0e0e0;
}

.quantity {
    min-width: 20px;
    text-align: center;
    font-weight: 600;
}




/* Additional CSS for price display */
.seat-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 3px;
}

.seat-price {
    font-weight: 600;
    color: #41D5FB;
    font-size: 0.9rem;
}

/* Update seat-details to handle new layout */
.seat-details {
    flex: 1;
    min-width: 0;
}

.seat-details strong {
    display: block;
    font-size: 0.95rem;
    color: #222;
    margin-bottom: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}













































































































/* Promo Code Styles */
.promo-code-container {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.promo-code-input {
  flex: 1;
}

.promo-code-input .form-control {
  border-radius: 10px;
  padding: 12px 14px;
}

.apply-btn {
  background: #41D5FB;
  color: white;
  border: none;
  border-radius: 10px;
  padding: 0 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

.apply-btn:active {
  background: #15b9ee;
}

/* Payment Methods Styles */
.payment-description {
  font-size: 0.95rem;
  color: #666;
  margin: 10px 0 15px 0;
  line-height: 1.4;
}

.payment-methods-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: #666;
  text-transform: uppercase;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.payment-methods-container {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.payment-method {
  display: flex;
  align-items: center;
  padding: 14px 16px;
  background: #fff;
  border: 1px solid #E3E8F2;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s;
}

.payment-method.selected {
  border-color: #41D5FB;
  background-color: #f0faff;
}

.method-icon {
  width: 40px;
  height: 40px;
  background: #f5f5f5;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 14px;
}

.payment-method.selected .method-icon {
  background: #e0f7ff;
}

.method-icon i {
  font-size: 1.2rem;
  color: #555;
}

.payment-method.selected .method-icon i {
  color: #41D5FB;
}

.method-details {
  flex: 1;
}

.method-name {
  font-weight: 600;
  font-size: 1rem;
  color: #222;
  margin-bottom: 3px;
}

.card-details {
  display: flex;
  gap: 10px;
  font-size: 0.85rem;
  color: #666;
}

.method-radio {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 10px;
}

.method-radio i {
  font-size: 1.2rem;
  color: #ccc;
}

.payment-method.selected .method-radio i {
  color: #41D5FB;
}

/* Credit Card Details Styles */
.credit-card-details {
  margin-top: 16px;
  padding: 16px;
  background: #f9f9f9;
  border-radius: 12px;
  display: none;
}

.card-detail-row {
  margin-bottom: 16px;
}

.card-detail-row:last-child {
  margin-bottom: 0;
}

.detail-label {
  font-size: 0.85rem;
  color: #666;
  margin-bottom: 8px;
  font-weight: 500;
  display: block;
}

.detail-input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.2s;
  background-color: #fff;
  color: #333;
}

.detail-input:focus {
  border-color: #41D5FB;
  outline: none;
  box-shadow: 0 0 0 2px rgba(65, 213, 251, 0.2);
}

.card-detail-row.two-column {
  display: flex;
  gap: 20px;
}

.card-detail-row.two-column .detail-column {
  flex: 1;
}

.card-number-input-container {
  position: relative;
}

.card-number-input {
  padding-right: 40px;
}

.card-type-icon {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #666;
  font-size: 1.2rem;
}

.cvv-input-container {
  position: relative;
}

.cvv-input {
  padding-right: 30px;
}

.cvv-info {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: #999;
  font-size: 0.9rem;
  cursor: help;
}

/* Input placeholder styling */
.detail-input::placeholder {
  color: #aaa;
  opacity: 1;
}















































/* Form Field Styles */
.form-content {
  padding: 16px 20px;
}

.form-field {
  margin-bottom: 1.2rem; /* Increased from 20px to 1.2rem for better scaling */
}

.form-field label {
  display: block;
  font-size: 0.95rem;
  color: #333;
  margin-bottom: 6px;
  font-weight: 500;
}

.form-field .form-control {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #222B45;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.2s;
  background-color: #fff;
  color: #333;
}

.form-field .form-control:focus {
  border-color: #41D5FB;
  outline: none;
  box-shadow: 0 0 0 2px rgba(65, 213, 251, 0.2);
}

.form-field textarea.form-control {
  min-height: 100px;
  resize: vertical;
}

/* Input placeholder styling */
.form-control::placeholder {
  color: #aaa;
  opacity: 1;
}

/* Pre-filled input styling */
.form-control[value]:not([value=""]) {
  color: #333;
  font-weight: 500;
}















/* Map Container Styles */
.map-container {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.map-area {
  height: 340px;
  width: 100%;
  position: relative;
  max-width: 430px;
  margin: 0 auto;
  transition: opacity 0.32s;
}
#map {
  height: 100%;
  width: 100%;
}
.map-area.sheet-hidden {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.34s;
}

/* Button Styles */
.home-btn {
  position: absolute;
  top: 24px;
  left: 16px;
  background: #fff;
  border-radius: 50%;
  width: 58px;
  height: 58px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  z-index: 10;
  transition: box-shadow 0.2s;
}
.home-btn:active {
  box-shadow: 0 2px 8px rgba(0,0,0,0.18);
}
.pin {
  position: absolute;
  left: 50%;
  top: 62%;
  transform: translate(-50%, -50%);
  font-size: 2.5rem;
  color: #222B45;
  z-index: 2;
  background: #fff;
  border-radius: 50%;
  padding: 7px 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.07);
}
.btn-estimate, .btn-proceed {
  background: #41D5FB;
  color: #fff;
  font-weight: 600;
  border-radius: 12px;
  width: 100%;
  font-size: 1.3rem;
  margin-top: 10px;
  min-height: 52px;
  border: none;
  transition: background 0.18s;
}


.btn-estimate:hover
{
  background: #2fb6d7;
  color: #fff;
  font-weight: 600;
}


.btn-estimate:active, .btn-proceed:active {
  background: #222B45;
  color: #fff;
}
.btn-proceed {
  font-size: 1.0rem;
  padding: 10px 0;
  margin-top: 2px;
}

.btn-light>span 
{
  font-size: 14px;
}

.btn-light {
  background-color: #fff;
  border: 1px solid #222B45;
  color: #222B45;
  font-weight: 500;
  border-radius: 10px;
}
.btn-light:hover {
  background-color: #f5f5f5;
  border-color: #E3E8F2;
}
.back-btn {
  width: 45px;
  height: 44px;
  border-radius: 12px !important;
  border: 2px solid #41D5FB;
  color: #41D5FB;
  background: #fff;
  font-size: 1.20rem;
  margin-top: 5px;
  margin-right: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.18s, color 0.18s;
}
.back-btn:active {
  background: #e0f7ff;
  color: #14b3e7;
}
.back-button {
  background: none;
  border: none;
  font-size: 1.2rem;
  padding: 0;
  margin-right: 8px;
  color: #222B45;
}

.stop-remove-btn 
{
  background: none;
  border: none;
  border: 1px solid #222B45;
  font-size: 1.2rem;
  padding: 8px;
  margin-left: 8px;
  color: #ff4444;
  border-radius: 10px;
}

.address-expand-btn {
  background: none;
  border: none;
  outline: none;
  position: absolute;
  right: 18px;
  top: 10px;
  color: #686868;
  font-size: 1.38rem;
  z-index: 10;
  transition: transform 0.26s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.address-expand-btn:active { color: #15b9ee; }
.address-expand-btn .fa-chevron-down {
  transition: transform 0.27s;
}
.address-sheet.expanded .address-expand-btn .fa-chevron-down {
  transform: rotate(180deg);
}

/* Sheet Styles */
.location-form-sheet {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100%;
  max-width: 430px;
  margin: 0 auto;
  background: #fff;
  border-radius: 24px 24px 0 0;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.06);
  padding: 0 0 16px 0;
  z-index: 99;
  transition: all 0.3s cubic-bezier(.4,1,.2,1);
  max-height: 87vh;
  overflow: visible;
}
.location-form-sheet.expanded {
  top: 0px;
  left: 0; right: 0; bottom: 0;
  width: 100%;
  max-width: 430px;
  margin: 0 auto;
  height: calc(100vh - 24px) !important;
  min-height: calc(100vh - 24px);
  max-height: calc(100vh - 24px) !important;
  border-radius: 0 0 0 0;
  box-shadow: 0 0 0 rgba(0,0,0,0.0);
  transition: all 0.28s cubic-bezier(.4,1,.2,1);
  overflow: hidden;
  padding-bottom: 0;
}

/* Stacking container for both panels */
.sheets-stack {
  position: relative;
  width: 100%;
  max-width: 430px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  z-index: 2000;
  background: linear-gradient(to top, #f9f9f9 60px, rgba(255,255,255,0) 100%);
  padding-bottom: 110px; /* Added to prevent content from being hidden behind footer */
}

/* Address Sheet */
.address-sheet {
  background: none;
  border-radius: 12px 12px 12px 12px !important;
  /*box-shadow: 0 -2px 18px rgba(0,0,0,0.07);*/
  /*min-height: 58px;
  height: 58px;*/
  padding: 0px 0px 20px 0px;
  overflow: hidden;
  transition: height 0.34s cubic-bezier(.4,1,.2,1), border-radius 0.2s;
  display: flex;
  flex-direction: column;
  margin: 20px 10px 5px 10px;
  width: calc(100% - 20px);
}
.address-sheet.expanded {
  height: auto;
  min-height: 178px; /* Minimum height when expanded */
  border-radius: 12px 12px 12px 12px !important;
  transition: height 0.37s cubic-bezier(.4,1,.2,1), border-radius 0.22s;
  padding-bottom: 20px;
  box-shadow: 0 -2px 18px rgba(0, 0, 0, 0.07);
  background: #fff;
  border: 1px solid #d0d0d0;
}

/* Vehicle Sheet */
.vehicle-sheet {
  background: #fff;
  margin: 20px 10px 20px 10px;
  border-radius: 12px 12px 12px 12px !important;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  flex: 1;
  width: calc(100% - 20px);
}

/* Add-on Sheet */
.addon-sheet {
  background: #fff;
  border-radius: 12px !important;
  box-shadow: 0 -2px 18px rgba(0,0,0,0.07);
  padding: 16px 26px;
  margin: 20px 10px 20px 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: calc(100% - 20px);
}

/* Header Styles */
.sheet-header, .address-header {
  text-align: center;
  background: #fff;
  z-index: 2;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 1px;
}
.sheet-header {
  padding-top: 5px;
  padding-bottom: 3px;
  transition: opacity 0.16s;
  z-index: 1001;
}
.address-header {
  padding: 8px 0 4px 0;
  min-height: 42px;
}
.sheet-header-bar, .address-header-bar {
  height: 5px;
  width: 48px;
  display: inline-block;
  border-radius: 6px;
  margin-bottom: 0px;
}
.sheet-header-bar {
  background: #E3E8F2;
}
.address-header-bar {
  background: #ececec;
}
.sheet-title, .address-title {
  font-size: 1.19rem;
  font-weight: 600;
  color: #222B45;
}
.sheet-title {
  margin-top: 7px;
  margin-bottom: 6px;
}
.address-title {
  margin-top: 3px;
  margin-bottom: 3px;
  cursor: pointer;
}
.location-form-sheet .sheet-title {
  font-size: 1.32rem;
}





/* Form Styles */
.form-content {
  padding: 0 18px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.input-group-text
{
border: 1px solid #222B45 !important;
}
.form-select
{
border: 1px solid #222B45 !important;
font-size: 14px;
}


.fa-calendar-days
{
  font-size: 14px;
}

.input-group .input-group-text {
  background: transparent;
  border: none;
  font-size: 14px;
}

 

.input-icon { 
  color: #222B45; 
  min-width: 30px; 
}
.add-stop {
  color: #222B45;
  font-weight: 500;
  cursor: pointer;
  margin-left: 10px;
  font-size: 1.06rem;
}
.row.gap-2 > * { margin-bottom: 0.5rem; }

/* Form controls */
.input-group>.form-control
{
border: 1px solid #222B45;
}

.form-control, .form-select {
  border: 1px solid #222B45;
  border-radius: 10px;
  padding: 10px 15px;
  color: #222B45;
}
.form-control:focus, .form-select:focus {
  border-color: #41D5FB;
  box-shadow: 0 0 0 0.2rem rgba(65, 213, 251, 0.25);
}

/* Autocomplete overlay styling */
.autocomplete-overlay {
  position: relative;
  left: 0; right: 0;
  background: #fff;
  z-index: 999;
  border-top: 1px solid #E3E8F2;
  border-bottom: 1px solid #E3E8F2;
  margin-top: 0;
  border-radius: 0;
  box-shadow: none;
  display: none;
  flex-grow: 1;
  overflow-y: auto;
  max-height: calc(100vh - 150px);
}
.autocomplete-list { margin: 0; padding: 0; list-style: none; }
.autocomplete-item {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 16px 12px 8px 12px;
  border-bottom: 1px solid #E3E8F2;
  cursor: pointer; background: #fff;
  transition: background 0.16s;
}
.autocomplete-item:last-child { border-bottom: none; }
.autocomplete-item:hover { background: #f8f8f8; }
.autocomplete-icon {
  width: 28px; flex-shrink: 0;
  display: flex; flex-direction: column; align-items: center;
}
.autocomplete-icon i {
  color: #222B45;
}
.autocomplete-distance {
  font-size: 13px; color: #757575; margin-bottom: 2px; margin-top: 2px;
}
.autocomplete-main {
  font-weight: 600; font-size: 17px; color: #222B45; line-height: 1.16;
}
.autocomplete-address {
  font-size: 15px; color: #808080; margin-top: -2px; font-weight: 400; line-height: 1.18;
}
.form-controls-row {
  margin-top: 7px; margin-bottom: 2px;
  display: flex; gap: 8px; width: 100%;
}
.form-controls-row .btn, .form-controls-row .input-group { flex: 1 1 0; }
.form-controls-row .input-group { max-width: 110px; }

/* New styles for focused input mode */
.location-form-sheet.focused-mode .form-content > *:not(.active-input-container):not(.autocomplete-overlay):not(.stop-active-container):not(.datetime-container) {
  display: none;
}
.location-form-sheet.focused-mode .sheet-header {
  display: none;
}
.location-form-sheet.focused-mode #addStopsRow,
.location-form-sheet.focused-mode #stopsContainer {
  display: none !important;
}
.active-input-container, .stop-active-container, .datetime-container {
  display: none;
  margin-bottom: 0;
  padding: 16px 0;
  background: white;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.location-form-sheet.focused-mode .active-input-container,
.location-form-sheet.focused-mode .stop-active-container,
.location-form-sheet.focused-mode .datetime-container {
  display: flex;
}
.location-form-sheet.focused-mode .autocomplete-overlay,
.location-form-sheet.focused-mode .datetime-picker-container {
  display: block;
  flex-grow: 1;
  overflow-y: auto;
}
.stops-container {
  display: none;
  width: 100%;
}

/* Address Details */
.address-details {
  padding: 8px 10px 2px 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 7px;
  animation: slideDown 0.25s;
}
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px);}
  to   { opacity: 1; transform: translateY(0);}
}
.address-row, .addon-row {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 1rem;
  font-weight: 600;
  color: #222B45;
  margin-bottom: 0px;
}
.address-row .fa, .addon-row .fa {
  font-size: 0.95rem;
  color: #26a1f8;
}
.address-row.to {
  color: #1a1a1a;
  font-weight: 500;
}
.address-row.to .fa {
  color: #222B45;
  font-size: 1rem;
}

/* Vehicle List Styles */
.vehicles-list-container {
  flex: 1 1 auto;
  overflow-y: auto;
  padding: 0 0 8px 0;
  margin-bottom: 8px;
  background: #fff;
}
.vehicles-list {
  padding-top: 0;
  padding-right: 8px;
  padding-left: 8px;
  padding-bottom: 0px;
}
.vehicle-card {
  background: #E3E8F2;
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 10px 10px 0px;
  margin: 0 0 13px 0;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border 0.17s, background 0.2s;
  position: relative;
}
.vehicle-card.selected,
.vehicle-card:hover {
  background: #41D5FB;
  border: 2.2px solid #13b8e9;
  color: #fff;
}
.vehicle-card.selected .vehicle-type,
.vehicle-card.selected .vehicle-desc,
.vehicle-card.selected .vehicle-price,
.vehicle-card.selected .vehicle-capacity {
  color: #fff !important;
}
.vehicle-card.selected .capacity-item {
  color: rgba(255,255,255,0.9) !important;
}
.vehicle-image {
  width: 85px;
  height: 60px;
  object-fit: contain;
  margin-right: 0;
}
.vehicle-info {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.vehicle-type {
  font-size: 1.00rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 2px;
  margin-top: -7px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.vehicle-type .badge {
  background: #14d276;
  color: #fff;
  font-size: 0.74em;
  font-weight: 700;
  margin-left: 6px;
  border-radius: 8px;
  padding: 2px 7px;
  vertical-align: middle;
}
.vehicle-desc {
  font-size: 0.70rem;
  color: #5f6c75;
  font-weight: 400;
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}
.vehicle-capacity {
  display: flex;
  gap: 16px;
  margin-top: 4px;
}
.capacity-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  color: #5f6c75;
  font-weight: 500;
}
.capacity-item i {
  font-size: 0.85rem;
  opacity: 0.9;
}
.capacity-item.passengers i {
  color: #222B45;
}
.capacity-item.luggage i {
  color: #222B45;
}
.vehicle-price {
  /* min-width: 55px; */
  font-size: 1.00rem;
  font-weight: 600;
  color: #222B45;
  text-align: right;
  /* margin-left: 10px; */
  letter-spacing: 0.01em;
  border: 0px solid black;
  align-self: flex-start;
}

/* Date Time Picker Styles */
.datetime-picker-container {
  display: none;
  padding: 16px;
  height: calc(100vh - 150px);
  overflow-y: auto;
}
.datetime-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
.datetime-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #222B45;
}
.datetime-nav-btn {
  background: none;
  border: none;
  font-size: 1.2rem;
  color: #222B45;
}
.flatpickr-calendar {
  box-shadow: none !important;
  width: 100% !important;
}
.flatpickr-day.selected {
  background: #41D5FB !important;
  border-color: #41D5FB !important;
}
.time-picker {
  display: none;
  padding: 16px;
}
.time-slots {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 16px;
}
.time-slot {
  padding: 12px;
  text-align: center;
  background: #E3E8F2;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
  color: #222B45;
  font-weight: 500;
}
.time-slot:hover {
  background: #d0d8e8;
}
.time-slot.selected {
  background: #41D5FB;
  color: white;
}





/* Footer Styles */
.footer-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 430px;
  margin: 0 auto;
  padding: 15px 24px 18px 24px;
  background: #fff;
  z-index: 3000;
  box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
  border-radius: 12px 12px 12px 12px !important;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  
}

/* Responsive Styles */
@media (max-width: 700px) {
  html, body {
    height: 100%;
    min-height: 100vh;
  }
  .sheets-stack {
    max-width: 100vw;
    width: 100vw;
  }
  .address-sheet, .vehicle-sheet, .addon-sheet {
    max-width: calc(100vw - 20px);
    width: calc(100vw - 20px);
    margin-left: 10px;
    margin-right: 10px;
  }
  .footer-bar {
    max-width: 100vw;
    width: 100vw;
  }
}
@media (max-width: 480px) {
	
	
	.form-field {
    margin-bottom: 1.5rem; /* Even more space on small screens */
  }
  
  .form-field label {
    margin-bottom: 0.5rem; /* Slightly more space below labels */
    font-size: 0.9rem; /* Slightly smaller labels */
  }
  
  .form-field .form-control {
    padding: 0.9rem 1rem; /* Adjusted padding for mobile */
    font-size: 0.95rem; /* Slightly smaller font */
  }
  
  .form-field textarea.form-control {
    min-height: 90px; /* Slightly smaller textarea */
  }

	
	
  .location-form-sheet, .address-sheet, .vehicle-sheet, .addon-sheet { 
    border-radius: 18px 18px 0 0; 
  }
  .footer-bar { border-radius: 0 0 12px 12px; }
  .autocomplete-overlay { left: -18px; right: -18px; width: calc(100% + 36px); }
  .vehicle-desc { 
    white-space: nowrap;
    max-width: 180px;
  }
  .vehicle-price {
    /* min-width: 75px; */
    font-size: 0.95rem;
  }
  .vehicle-capacity {
    gap: 12px;
  }
  .time-slots {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 380px) {
  .vehicle-desc {
    max-width: 150px;
  }
  .vehicle-price {
   /* min-width: 70px; */
    font-size: 0.9rem;
  }
  .vehicle-capacity {
    gap: 10px;
  }
  .capacity-item {
    font-size: 0.70rem;
  }
}