.center {
    margin: 0 auto;
    width: 100%;
}

#container{
    width:728px;
    height:90px;
    box-sizing: border-box;
    border: 2px solid red !important;
    border-radius:4px;
    background:#f7f7f7;
    box-sizing:border-box;
    overflow:hidden;
}
#searchCont {
    height: 90px;
    display: flex;
    align-items: center;
    background: #f2f2f2
}

/* Title */
.widget-title {
    text-align: center;
    color: #f47a20;
    margin-bottom: 8px;   /* currently 20px */
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
}

/* Left Section */
.left-section {
    width: 120px;
    /* same as offer box */
    height: 90px;
    background: #f47a20;
    /* same orange color */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-right: 1px solid rgba(255, 255, 255, 0.3);
}

/* Logo background adjustment */
.etslogo {
    width: 80px;
    margin-bottom: 4px;
    background-color: white;
}

.busImg {
    width: 75px;
}

/* Right Section */
.booking-section {
    flex: 1;
    padding: 4px 10px;
}

/* Row */
.search-row {
    display: flex;
    align-items: center;
    gap: 6px;
    width: 100%;
}

/* Inputs */
.search-row input[type="text"] {
    width: 110px;
    height: 30px;
    border: 1px solid #d9d9d9;
    border-radius: 4px;
    padding: 0 8px;
    box-sizing: border-box;
    font-size: 12px;
    flex: 1;
    min-width: 0;
}

.search-row input[type="text"]:focus {
    outline: none;
    border-color: #f47a20;
    box-shadow: 0 0 4px rgba(244, 122, 32, .25);
}

.search-row input[type="date"] {
    height: 30px;
    border: 1px solid #d9d9d9;
    border-radius: 4px;
    padding: 0 8px;
    box-sizing: border-box;
}

/* Button */
#button {
    width: 80px;
    height: 28px;
    background: linear-gradient(135deg, #f47a20, #e15b0a);
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: .3s;
}

#button:hover {
    background: linear-gradient(135deg, #e15b0a, #c94f05);
    transform: translateY(-1px);
}

#button:active {
    transform: translateY(0);
}

.swap-icon {
    color: #f47a20;
    font-size: 14px;
    font-weight: bold;
}


/* Center section */
.center-section {
    flex: 1;
    background: #f5f5f5;   /* light gray */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 0;
    padding: 0 8px;
}

/* Offer Box */
.offer-box {
    width: 120px;
    height: 90px;
    background: #f47a20;
    color: #fff;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 11px;
    font-weight: bold;
    line-height: 18px;
}

.offer-box:hover {
    background: #e66d10;
}

.ui-autocomplete {
    max-height: 120px;
    overflow-y: auto;
    overflow-x: hidden;
    font-size: 12px !important;
    z-index: 999999 !important;
    border: 1px solid #ddd;
    background: #fff;
}

.ui-menu-item {
    font-size: 12px !important;
}

.ui-menu-item-wrapper {
    padding: 4px 8px !important;
    font-size: 12px !important;
    line-height: 18px !important;
}

.ui-menu .ui-menu-item {
    min-height: auto !important;
}

@media screen and (max-width:768px) {

    #container {
        width: 100%;
        margin: 0px !important;
        border: none !important;
    }

    .changeCol {
        height: auto !important;
        margin-left: 5px !important;
    }

    #searchCont form input[type="text"] {
        padding: 0px 4px;
        margin: 0px;
        height: 30px;
        width: 59%;
    }

    .busImg {
        position: inherit !important;
        left: 197px !important;
    }

    .logoDiv {
        left: 0px !important;
        top: 0px !important;
    }

    .etslogo {
        width: 100% !important;
    }

    #button {
        left: 65px !important;
        top: 10px !important;
    }
}