.mptbm-filter-feature{
    display: flex !important;
    flex-direction: row !important;
    flex-flow: column wrap;
    justify-content: space-around !important;
    align-items: center !important;
}

.mptbm-filter-feature-input{
    width: 49%;
}

.mptbm-filter-feature-input select:focus {
  /* Add your styling here */
  border-color: #007bff; /* Example border color */
  outline: none; /* Remove default focus outline */
  background-color: #fff !important;
  /* Add any other styles you want for the focus state */
}

.geo-fence-no-transport{
  display: none;
}
.mptbm_manual_start_place , .mptbm_map_end_place{
  text-transform: capitalize;
}

/* Hide disabled core WooCommerce fields */
.woocommerce .checkout .form-row.mptbm-hidden-field,
.woocommerce-checkout .form-row.mptbm-hidden-field {
    display: none !important;
}

/* Custom CSS for taxi booking manager */

/* Prevent price and currency symbol from breaking into separate lines */
.mptbm_list_details h4,
.mptbm_product_total_price,
.mptbm_product_price,
.woocommerce-Price-amount,
.amount {
    white-space: nowrap !important;
    word-break: keep-all !important;
    display: inline-block;
}

/* Ensure currency symbols stay with price numbers */
.woocommerce-Price-currencySymbol {
    white-space: nowrap !important;
}

/* Mobile-specific price styling */
@media only screen and (max-width: 768px) {
    .mptbm_list_details h4 {
        font-size: 20px !important;
        white-space: nowrap !important;
        overflow: visible !important;
        text-overflow: clip !important;
    }
    
    /* Container for price to allow horizontal scrolling if needed */
    .mptbm_list_details ._min_150_mL_xs {
        overflow-x: auto;
        overflow-y: hidden;
    }
}

/* For very small screens, keep it readable */
@media only screen and (max-width: 480px) {
    .mptbm_list_details h4 {
        font-size: 18px !important;
    }
}

/* Hide fields that are disabled but need to be hidden */
.mptbm-hidden-field {
    display: none !important;
}

/* Buffer time notice styling */
.mptbm_buffer_notice {
    background-color: #f8f9fa;
    border-left: 3px solid #007cba;
    padding: 8px 12px;
    border-radius: 4px;
    margin-top: 8px;
    font-size: 12px;
    color: #495057;
    line-height: 1.4;
}

.mptbm_buffer_notice i {
    color: #007cba;
    margin-right: 5px;
}

.mptbm_buffer_notice:hover {
    background-color: #e9ecef;
    transition: background-color 0.2s ease;
}

/* Mobile responsive buffer notice */
@media only screen and (max-width: 768px) {
    .mptbm_buffer_notice {
        font-size: 11px;
        padding: 6px 10px;
    }
}

.woocommerce-page form .form-row .select2-container .select2-selection--single .select2-selection__rendered
 {
     padding: 8px !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
    margin-left: 3px  !important;
    margin-top: 8px  !important;
}

.woocommerce-input-wrapper .select2-container--default .select2-selection--single {
    background-color: #fff;
    /* border: 1px solid #aaa; */
    border-radius: 4px;
    height: 46px;
    padding: 0;
}

/* Override for small screens */
@media only screen and (max-width: 450px) {
    .mpStyle .justifyBetween {
        display: block !important;
        /* justify-content: space-between; */ /* Not needed for block */
    }
     ._dLayout.mptbm_distance_time {
        margin-top: 20px !important;
    }
}

/* Location validation error styles */
.mptbm-error-field {
    border-color: #dc3545 !important;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25) !important;
}

.mptbm-location-error {
    color: #dc3545;
    font-size: 12px;
    margin-top: 5px;
    display: block;
}

/* Error field focus state */
.mptbm-error-field:focus {
    border-color: #dc3545 !important;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25) !important;
}


/*shuaibs*/
/* --- 1. THE STUB KILLER (Scorched Earth) --- */
/* This removes those yellow lines seen in your screenshot */
.mptbm_transport_search_area .tabListsNext::before,
.mptbm_transport_search_area .tabListsNext::after,
.mptbm_transport_search_area .tabItemNext::before,
.mptbm_transport_search_area .tabItemNext::after,
.mptbm_transport_search_area .circleIcon::before,
.mptbm_transport_search_area .circleIcon::after {
    content: none !important;
    display: none !important;
    background: none !important;
    visibility: hidden !important;
}

/* --- 2. THE MAIN CONTAINER (Fixing the padding) --- */
.mptbm_transport_search_area .tabListsNext {
    background-color: #1a1a1a !important; 
    padding: 60px 0 40px 0 !important; /* Restored breathing room */
    border-radius: 12px 12px 0 0 !important;
    position: relative !important;
    display: flex !important;
    justify-content: space-around !important;
    overflow: visible !important;
}

/* --- 3. THE NEW DOTTED LINE (Fixed Position) --- */
.mptbm_transport_search_area .tabListsNext::before {
    content: "" !important;
    display: block !important;
    visibility: visible !important;
    position: absolute !important;
    top: 79px !important; /* Centered behind 38px circles */
    left: 10%;
    right: 10%;
    height: 1px !important;
    border-top: 2px dotted rgba(255, 255, 255, 0.2) !important; 
    z-index: 1 !important;
}

/* --- 4. THE STEP ITEM --- */
.mptbm_transport_search_area .tabItemNext {
    display: flex !important;
    flex-direction: column !important; 
    align-items: center !important;
    position: relative !important;
    z-index: 5 !important;
}

/* --- 5. THE CIRCLE ICON (h4) --- */
.mptbm_transport_search_area .circleIcon {
    width: 38px !important;
    height: 38px !important;
    margin: 0 auto 0 auto !important; /* Removed bottom margin entirely */
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 50% !important;
    background-color: #1a1a1a !important; 
    border: 2px solid #444 !important; 
    color: #888 !important;
    position: relative !important;
    z-index: 5 !important;
    box-shadow: 0 0 0 6px #1a1a1a !important; 
}

/* --- 6. THE CIRCLE TEXT (h6) - PULLING IT UP --- */
.mptbm_transport_search_area .circleTitle {
    color: #ffffff !important;
    font-size: 11px !important;
    text-transform: uppercase !important;
    font-weight: 700 !important;
    text-align: center !important;
    opacity: 0.4 !important;
    
    /* THE FIX: Negative margin pulls the text UP towards the circle */
    margin-top: -5px !important; 
    position: relative !important;
    z-index: 10 !important; /* Sits on top */
}

/* --- 7. ACTIVE THEME COLORS --- */
.mptbm_transport_search_area .tabItemNext.active .circleIcon,
.mptbm_transport_search_area .tabItemNext.success .circleIcon {
    background-color: #ffcc00 !important; 
    border-color: #ffcc00 !important;
    color: #1a1a1a !important;
}

.mptbm_transport_search_area .tabItemNext.active .circleTitle,
.mptbm_transport_search_area .tabItemNext.success .circleTitle {
    opacity: 1 !important;
}

/*icon test shuaib*/

