
        .step-wizard {
            display: flex;
            justify-content: space-between;
            align-items: center;
          
        }
        
        .step-wizard-item {
            flex: 1;
            text-align: center;
            position: relative;
        }
        
        .step-wizard-item::before {
            content: "";
            position: absolute;
            top: 20px;
            left: 50%;
            width: 100%;
            height: 3px;
            background: #e0e0e0;
            z-index: 0;
        }
        
        .step-wizard-item:last-child::before {
            display: none;
        }
        
        .step-wizard-item.active .step-icon,
        .step-wizard-item.complete .step-icon {
            background: #007bff;
            color: #fff;
        }
        
        .step-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: #e0e0e0;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 10px;
            position: relative;
            z-index: 1;
        }

        .journey-type-card,
        .vehicle-type-card {
            border: 1px solid #ddd;
            padding: 15px;
            margin-bottom: 15px;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .journey-type-card:hover,
        .vehicle-type-card:hover {
            border-color: #007bff;
            box-shadow: 0 0 10px rgba(0,0,0,0.1);
        }
        
        .journey-type-card.selected,
        .vehicle-type-card.selected {
            border-color: #007bff;
            background-color: #f8f9fa;
        }
        
        .journey-type-card img,
        .vehicle-type-card img {
            width: 100px;
            height: 100px;
            object-fit: cover;
            margin-bottom: 10px;
        }

        .stop-container {
            position: relative;
            margin-bottom: 15px;
        }

        .stop-number {
            position: absolute;
            left: -30px;
            top: 10px;
            color: #6c757d;
        }

        .place-suggestions {
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background: white;
            border: 1px solid #ddd;
            border-radius: 4px;
            z-index: 1000;
            max-height: 200px;
            overflow-y: auto;
            display: none;
        }

        .place-suggestion-item {
            padding: 8px 12px;
            cursor: pointer;
            border-bottom: 1px solid #eee;
        }

        .place-suggestion-item:hover {
            background: #f8f9fa;
        }

        .error-feedback {
            color: #dc3545;
            font-size: 0.875em;
            margin-top: 0.25rem;
            display: none;
        }

        .selected-vehicle {
            background: #f8f9fa;
            padding: 10px;
            border-radius: 8px;
            margin-bottom: 20px;
          
              float: left;
    width: 100%;
        }

        .selected-vehicle img {
            width: 50px;
            height: 50px;
            object-fit: cover;
            margin-right: 10px;
        }

        .remove-stop {
            position: absolute;
            right: -30px;
            top: 10px;
            color: #dc3545;
            cursor: pointer;
        }

        .back-btn {
            margin-right: 10px;
        }

        .datepicker-wrapper {
            position: relative;
        }

        .datepicker-wrapper .error-feedback {
            position: absolute;
            bottom: -20px;
        }
		
			  .stop-container { display: flex; align-items: center; }
        .stop-number { margin-right: 8px; }
        .remove-stop { cursor: pointer; color: red; margin-left: 8px; }
        .error-feedback { color: red; display: none; }
        .journey-type-card, .vehicle-type-card{
            float: left;
    width: 100%;
        padding: 0;
            overflow: hidden;
        }
        .journey-type-card img, .vehicle-type-card img{
                float: left;
    margin: 0;
        }
        .journey-type-card h6,.journey-type-card p{
                float: left;
                  padding-left: 20px;
                 color:#000;
                      width: 60%;
        }
        .journey-type-card h6{
                font-weight: 700;
                    font-size: 18px;
    margin-bottom: 0;
        margin-top: 25px;
  
        }
        .vehicle-type-card h6 , .vehicle-type-card p{
               text-align: right;
    padding-right: 20px;
             color:#000;
        }
          .vehicle-type-card h6{
                font-weight: 700;
                    font-size: 18px;
    margin-bottom: 0;
        margin-top: 25px;
   
        }
        button.back-btn ,  button.edit-vehicle{
                padding: 2px 13px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
        }
        .step h5{ margin-top:0 !important;}
        #selectedVehicleType{
                float: left;
        }
        #selectedVehicleModel{
                float: left;
    margin-left: 20px;
    font-weight: 400;
    color: #000 !important;
        }