:root {
    --primary-color: #3b3b3b;
    --primary-color-light: #003d418a;
    --accent-color: #2DBE60;
    --background-color: #f5f5f5;
    --widget-background: #FFFFFF;
    --border-color: #E0E0E0;
}


.search-container {
    font-family: sans-serif;
    position: relative;
    display: flex;
    align-items: center;
    background-color: var(--background-color);
    border-radius: 37.5px;
    padding: 8px;
    max-width: 800px;
    width: 100%;
    /* box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); */
}

/* Mobile Responsive Styles */
@media (max-width: 600px) {
    .search-container {
        max-width: 100%;
        border-radius: 20px;
        padding: 0;
        box-shadow: none;
        background: none;
        display: block;
    }

    .search-form {
        display: none;
    }

    .mobile-header-card {
        display: flex;
        align-items: center;
        background: var(--widget-background);
        border-radius: 20px;
        box-shadow: 0 4px 24px rgba(0, 61, 65, 0.08);
        padding: 16px 20px;
        margin: 0 auto;
        width: 100%;
        max-width: 370px;
        justify-content: space-between;
        cursor: pointer;
        position: relative;
    }

    .mobile-header-card .header-info {
        display: flex;
        flex-direction: column;
        gap: 2px;
    }

    .mobile-header-card .main-title {
        font-size: 18px;
        font-weight: 700;
        color: var(--primary-color);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .mobile-header-card .sub-info {
        font-size: 13px;
        color: var(--primary-color-light);
        font-weight: 500;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .mobile-header-card .stops-badge {
        background: var(--primary-color);
        color: #fff;
        border-radius: 50px;
        font-size: 12px;
        font-weight: 700;
        padding: 2px 8px;
        margin-left: 8px;
        display: inline-block;
    }

    .mobile-header-card .settings-icon {
        background: var(--primary-color);
        border-radius: 50%;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
    }

    .mobile-header-card .settings-icon svg {
        color: #fff;
        width: 24px;
        height: 24px;
    }

    .mobile-header-card .settings-icon .badge {
        position: absolute;
        bottom: 2px;
        right: 2px;
        background: var(--accent-color);
        color: #fff;
        border-radius: 50%;
        font-size: 11px;
        font-weight: 700;
        width: 18px;
        height: 18px;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 2px solid #fff;
    }

    /* Mobile Modal Overlay */
    .mobile-header-modal {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(240, 248, 248, 0.98);
        z-index: 9999;
        align-items: flex-start;
        justify-content: center;
        overflow-y: auto;
    }

    .mobile-header-modal.active {
        display: flex;
    }

    .mobile-modal-content {
        background: var(--widget-background);
        border-radius: 24px;
        box-shadow: 0 4px 24px rgba(0, 61, 65, 0.08);
        margin: 32px auto;
        width: 100%;
        max-width: 400px;
        padding: 24px 16px 32px 16px;
        position: relative;
        display: flex;
        flex-direction: column;
        gap: 18px;
    }

    .modal-content {
        /* width: fit-content; */
    }

    .mobile-modal-close {
        position: absolute;
        top: 18px;
        right: 18px;
        background: none;
        border: none;
        font-size: 28px;
        color: var(--primary-color-light);
        cursor: pointer;
        z-index: 2;
    }

    .mobile-modal-section {
        margin-bottom: 18px;
    }

    .mobile-modal-section:last-child {
        margin-bottom: 0;
    }

    .mobile-modal-label {
        font-size: 13px;
        color: var(--primary-color-light);
        font-weight: 600;
        margin-bottom: 6px;
    }

    .mobile-modal-value {
        font-size: 16px;
        color: var(--primary-color);
        font-weight: 700;
        margin-bottom: 0;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .mobile-modal-btn {
        width: 100%;
        background: var(--background-color);
        border-radius: 12px;
        border: none;
        padding: 14px 0;
        font-size: 16px;
        color: var(--primary-color-light);
        font-weight: 600;
        margin-top: 8px;
        cursor: pointer;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
        transition: background 0.2s;
    }

    .mobile-modal-btn:active,
    .mobile-modal-btn:hover {
        background: var(--border-color);
    }

    /* Mobile calendar and time picker */
    .mobile-modal-calendar {
        margin-bottom: 18px;
    }

    .mobile-modal-time-inputs {
        margin-top: 12px;
    }

    .mobile-modal-time-input {
        background: var(--widget-background);
        border-radius: 12px;
        border: 1px solid var(--border-color);
        padding: 0 0 0 0;
        margin-bottom: 12px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        min-height: 41px;
        position: relative;
    }

    .mobile-modal-time-input span {
        font-size: 13px;
        color: grey;
        font-weight: normal;
        padding-left: 24px;
    }

    .mobile-modal-time-input .time {
        font-weight: 600;
        color: var(--primary-color);
        padding-right: 24px;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .mobile-modal-time-input .time svg {
        color: var(--primary-color);
    }

    .mobile-modal-time-dropdown {
        background: var(--widget-background);
        border-radius: 16px !important;
        box-shadow: 0 4px 24px rgba(0, 61, 65, 0.08);
        border: 1px solid var(--border-color);
        min-width: 220px !important;
        padding: 0 !important;
        margin-top: 8px;
        z-index: 1001;
        max-height: 285px;
        overflow-y: auto;
        position: absolute;
        left: 0;
        display: none;
    }

    .mobile-modal-time-dropdown.active {
        display: block;
    }

    .mobile-modal-time-dropdown ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .mobile-modal-time-dropdown .time-option {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 16px 24px;
        font-size: 16px;
        color: var(--primary-color);
        font-weight: 600;
        border-bottom: 1px solid #F0F0F0;
        cursor: pointer;
        background: none;
        transition: background 0.2s;
    }

    .mobile-modal-time-dropdown .time-option:last-child {
        border-bottom: none;
    }

    .mobile-modal-time-dropdown .time-option:hover {
        background: var(--background-color);
    }

    .mobile-modal-time-dropdown .option-meta {
        font-size: 13px;
        color: var(--primary-color-light);
        font-weight: 400;
        margin-left: 16px;
    }

    /* Mobile location picker */
    .mobile-modal-location-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .mobile-modal-location-item {
        display: flex;
        align-items: center;
        margin-bottom: 12px;
    }

    .mobile-modal-location-icon {
        margin-right: 12px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .mobile-modal-location-icon .dot {
        width: 10px;
        height: 10px;
        background-color: var(--primary-color);
        border-radius: 50%;
    }

    .mobile-modal-location-icon .line {
        width: 1px;
        height: 20px;
        background-color: var(--border-color);
    }

    .mobile-modal-location-icon .stop-number {
        width: 20px;
        height: 20px;
        border: 1px solid var(--primary-color);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 12px;
        color: var(--primary-color);
    }

    .mobile-modal-location-input-wrapper {
        flex-grow: 1;
        position: relative;
    }

    .mobile-modal-location-input-wrapper .delete_stop {
        position: absolute;
        right: 3px;
        bottom: 2px;
        padding: 9px;
        border-radius: 6px;
        border: none;
        outline: none;
        background-color: transparent;
    }

    .mobile-modal-location-input-wrapper label {
        font-size: 11px;
        width: 100%;
        text-align: left !important;
        display: block;
        color: var(--primary-color-light);
    }

    .mobile-modal-location-input-wrapper input {
        width: 100%;
        border: 1px solid var(--border-color);
        border-radius: 8px;
        padding: 10px;
        font-size: 14px;
        box-sizing: border-box;
    }

    .mobile-modal-location-item.end-location .mobile-modal-location-input-wrapper input {
        background-color: #F0F8F8;
    }

    .mobile-modal-remove-stop-btn {
        background: none;
        border: none;
        cursor: pointer;
        padding: 5px;
        margin-left: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .mobile-modal-add-stop-section {
        display: flex;
        align-items: center;
        margin-left: 32px;
        margin-top: -8px;
        margin-bottom: 12px;
    }

    .mobile-modal-add-stop-btn {
        background: none;
        border: none;
        cursor: pointer;
        display: flex;
        align-items: center;
        gap: 8px;
        color: var(--primary-color);
        font-weight: 600;
    }

    .mobile-modal-add-stop-btn .plus-icon {
        width: 20px;
        height: 20px;
        border: 1px solid var(--primary-color);
        border-radius: 50%;
        display: flex;
    }

    .mobile-modal-end-location-toggle {
        display: flex;
        align-items: center;
        margin-top: 8px;
        margin-left: 0;
    }

    .mobile-modal-toggle-switch {
        margin-left: 8px;
    }
}

.search-form {
    display: flex;
    flex-grow: 1;
    align-items: center;
    flex-wrap: wrap;
}

.search-section {
    position: relative;
    flex: 1;
    padding: 8px 20px;
    cursor: pointer;
    border-right: 1px solid var(--border-color);
    min-width: 150px;
}

.search-section:last-of-type {
    border-right: none;
}

.search-section.active {
    background-color: var(--widget-background);
    border-radius: 30px;
    /* box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); */
}

.search-section .label-line {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: bold;
    color: var(--primary-color);
    margin: 0;
}

.search-section .label-line .icon {
    display: none;
}

.selected-icon svg {
    height: 18px !important;
    width: 18px !important;
}

.search-section.has-value .label-line .icon {
    display: inline-block;
    color: var(--primary-color);
}

.search-section .display-value {
    display: flex;
    align-items: center;
    justify-content: start;
}

.search-section p {
    font-size: 14px;
    color: var(--primary-color-light);
    margin: 2px 0 0 0;
    white-space: nowrap;
    font-weight: 500;
}

.search-section.has-value p {
    color: var(--primary-color-light);
    font-weight: 600;
}

.search-section .selected-icon {
    color: var(--primary-color-light);
    font-weight: 600;
}

.search-section.active .selected-icon {
    color: var(--primary-color);
    font-weight: 600;
}

.search-section.active p {
    color: var(--primary-color);
    font-weight: 600;
}

.clear-btn {
    background: #e0e0e0;
    border: none;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--primary-color);
}

.clear-btn:hover {
    background: #d0d0d0;
}

/* --- Dropdown General --- */
.dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    right: 0 !important;
    background-color: var(--widget-background);
    border-radius: 8px;
    padding: 8px;
    margin: 0;
    z-index: 1000;
}

#mydrop #where-dropdown {
    right: 0 !important;

}

.search-section.active .dropdown-menu {
    display: block;
}

/* --- "What" Dropdown --- */
#what-dropdown {
    width: 300px;
}

#what-dropdown ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#what-dropdown li {
    display: flex;
    align-items: center;
    padding: 12px;
    border-bottom: 1px solid #F0F0F0;
    cursor: pointer;
}

#what-dropdown li:last-child {
    border-bottom: none;
}

#what-dropdown li:hover {
    background-color: var(--background-color);
}

#what-dropdown .item-icon {
    margin-right: 12px;
    color: var(--primary-color);
}

#what-dropdown .item-text {
    flex-grow: 1;
}

#what-dropdown .item-text h5 {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0;
}

#what-dropdown .item-text p {
    font-size: 12px;
    color: var(--primary-color-light);
    margin: 2px 0 0 0;
}

#what-dropdown .arrow-icon {
    color: #B0BEC5;
}

/* --- "When" Dropdown (Calendar) --- */
#when-dropdown {
    width: 320px;
    padding: 16px;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.calendar-header .month-display {
    text-align: center;
}

.calendar-header .month-display p {
    font-size: 12px;
    color: var(--primary-color-light);
    margin: 0;
}

.calendar-header .month-display h5 {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0;
}

.calendar-nav {
    background: none;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    width: 32px;
    height: 32px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.calendar-nav:hover {
    background-color: var(--background-color);
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
}

.calendar-grid div {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 36px;
    font-size: 14px;
    cursor: pointer;
    border-radius: 50%;
}

.calendar-day-name {
    font-weight: 600;
    color: var(--primary-color-light);
    cursor: default !important;
}

.calendar-date {
    color: var(--primary-color);
    font-weight: bold;
}

.calendar-date.other-month {
    color: #B0BEC5;
}

.calendar-date.today {
    font-weight: bold;
}

.calendar-date.selected {
    background-color: var(--accent-color);
    color: white;
    font-weight: bolder;
}

.calendar-date:not(.other-month):not(.selected):hover {
    background-color: var(--border-color);
}

.time-inputs {
    margin-top: 16px;
    border-top: 1px solid var(--border-color);
    padding-top: 16px;
    display: flex;
    width: 100%;
    gap: 5px;
}

.time-inputs .time-input {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid var(--border-color);
    border-radius: 8px;
}

.time-inputs .time-input span {
    font-size: 13px;
    color: grey;
    font-weight: normal;
}

.time-inputs .time-input .time {
    font-weight: 600;
}

/* ::-webkit-scrollbar{
    width: 2px !important;
} */

/* Add/Update styles for time dropdown to match the image */
.time-dropdown {
    background: var(--widget-background);
    border-radius: 5px !important;
    box-shadow: 0 4px 24px rgba(0, 61, 65, 0.08);
    border: 1px solid var(--border-color);
    min-width: 140px !important;
    padding: 0 !important;
    margin-top: 8px;
    z-index: 1001;
    max-height: 285px;
    overflow-y: auto;
    position: absolute;
    left: 0;
}

.time-dropdown ul {
    list-style: none;
    padding: 0;
    margin: 0;
    overflow-y: auto;
    max-height: 285px;
}
.label {
    text-align: left !important;
}
.pass-count-hedding{
    display: block;
    color: #0f3e3d;
    margin-bottom: -8px;
}

.time-dropdown .time-option {
    display: flex;
    align-items: center;
    justify-content: start;
    padding: 16px 24px;
    font-size: 14px;
    color: var(--primary-color);
    font-weight: 100;
    border-bottom: 1px solid #F0F0F0;
    cursor: pointer;
    background: none;
    transition: background 0.2s;
}

.time-dropdown .time-option:last-child {
    border-bottom: none;
}

.time-dropdown .time-option:hover {
    background: #00c26d !important;
    color: white !important;
    font-weight: 400;
}

.time-dropdown .option-meta {
    font-size: 13px;
    color: var(--primary-color-light);
    font-weight: 400;
    margin-left: 16px;
}

.time-inputs .time-input {
    background: var(--widget-background);
    border-radius: 5px;
    border: 1px solid var(--border-color);
    padding: 0 5px;

    padding-top: 5px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 41px;
    position: relative;
    font-size: 13px;
    color: grey;
    font-weight: normal;
}

.time-inputs .time-input span {
    /* font-size: 12px; */
    color: var(--primary-color);
    font-weight: 600;
    font-size: 11px;
    color: grey;
    font-weight: normal;
}

.time-input .time {
    font-weight: 400;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 8px;
}

.time-inputs .time-input .time svg {
    color: var(--primary-color);
}

/* Remove border from last time-input */
.time-inputs .time-input:last-child {
    margin-bottom: 0;
}

/* --- "Where" Dropdown --- */
#where-dropdown {
    width: 450px;
    padding: 20px;
}

#where-dropdown h4 {
    margin: 0 0 20px 0;
    font-size: 20px;
    color: var(--primary-color);
}

.location-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.location-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;

    i {
        margin-top: 20px;
    }
}

.location-icon {
    margin-right: 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.location-icon .dot {
    width: 10px;
    height: 10px;
    background-color: var(--primary-color);
    border-radius: 50%;
}

.location-icon .line {
    width: 1px;
    height: 20px;
    background-color: var(--border-color);
}

.location-icon .stop-number {
    width: 20px;
    height: 20px;
    border: 1px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: var(--primary-color);
}

.location-input-wrapper {
    flex-grow: 1;
    position: relative;
    margin-top: 3px;
}

.location-input-wrapper label {
    font-size: 11px;
    color: var(--primary-color-light);
}

.location-input-wrapper input {
    width: 100%;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 10px;
    font-size: 14px;
    box-sizing: border-box;
    padding-top: 20px;
}

.location-input-wrapper .delete_stop {
    position: absolute;
    right: 3px;
    bottom: 8px;
    padding: 9px;
    border-radius: 6px;
    border: none;
    outline: none;
    background-color: transparent;
}

.location-item.end-location .location-input-wrapper input {
    /* background-color: #F0F8F8; */
    padding-right: 40px;
}

.remove-stop-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    margin-left: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.add-stop-section {
    display: flex;
    align-items: center;
    margin-left: 32px;
    margin-top: -8px;
    margin-bottom: 12px;
}

.add-stop-btn {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: 600;

}

.add-stop-btn .plus-icon {
    width: 20px;
    height: 20px;
    border: 1px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.end-location-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid var(--border-color);
    padding-top: 16px;
    margin-top: 16px;
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 22px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 22px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked+.slider {
    background-color: var(--accent-color);
}

input:checked+.slider:before {
    transform: translateX(18px);
}

/* --- Search Button --- */
.search-button {
    background-color: var(--accent-color);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    min-width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin-left: 10px;
}

.item-icon {
    width: 50px !important;
    height: 50px !important;
    color: var(--primary-color);
    background-color: #F0F8F8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.disabled-item {
    opacity: 0.5;
    /* Make the item look faded */
    pointer-events: none;
    /* Prevent interaction */
    cursor: not-allowed;
    /* Change cursor to indicate disabled state */
}



.disabled-item .item-icon,
.disabled-item .item-text,
.disabled-item .arrow-icon {
    color: #B0BEC5;
    /* Use a lighter color for disabled items */
    opacity: 0.5;
    /* Make the item look faded */
    pointer-events: none;
    /* Prevent interaction */
    cursor: not-allowed;
    /* Change cursor to indicate disabled state */

}

.disabled-date {
    opacity: 0.5;
    /* Make the date look faded */
    pointer-events: none;
    /* Prevent interaction */
    cursor: not-allowed;
    /* Change cursor to indicate disabled state */
}



.vehicle-filter {
    background: #fff;
    padding: 25px;
    border-radius: 14px;
    max-width: 750px;
    width: 100%;
    margin: auto;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.vehicle-filter input[type="text"] {
    width: 100%;
    padding: 12px 15px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 8px;
    margin-bottom: 20px;
    transition: 0.3s;
}

.vehicle-filter input[type="text"]:focus {
    border-color: var(--accent-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.2);
}

.filter-options {
    display: flex;
    /* gap: 20px; */
    margin-bottom: 20px;
    flex-wrap: wrap;
    /* border: 1px solid #2DBE60; */
    padding: 3px 7px;
    border-radius: 10px
}

.filter-options label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 15px;
    margin-bottom: 0 !important;
}

.filter-options input[type=checkbox] {
    margin: 0 5px !important;
}

input[type="checkbox"] {
    accent-color: #00c26d;
    /* color: #00c26d; */
}

input[type="checkbox"]:focus {
    border: none;
    outline: none;
    box-shadow: none;
}

/* Hide default checkbox */
.filter-options input[type="checkbox"],
/* .tag-list input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid #ccc;
    border-radius: 4px;
    background-color: #fff;
    cursor: pointer;
    position: relative;
    margin-right: 8px;
    transition: all 0.2s ease-in-out;
} */

/* Checked state */
/* .filter-options input[type="checkbox"]:checked, */
/* .tag-list input[type="checkbox"]:checked { */
    /* background-color:  var(--accent-color); */
    /* green */
    /* border-color:  var(--accent-color); */
/* } */

/* White tick mark */
/* .filter-options input[type="checkbox"]:checked::after, */
/* .tag-list input[type="checkbox"]:checked::after { */
    /* content: '✔'; */
    /* color: #fff; */
    /* font-size: 14px; */
    /* position: absolute; */
    /* top: 50%; */
    /* left: 50%; */
    /* transform: translate(-50%, -52%); */
/* } */
/*  */
/* Label alignment */
.filter-options label,
.tag-list label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 15px;
    cursor: pointer;
    margin-bottom: 0 !important;
    font-weight: 400;
}

/* Hide default checkbox */
/* .filter-options input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: #fff;
    cursor: pointer;
    position: relative;
    margin-right: 8px;
    transition: all 0.2s ease-in-out;
} */

/* Checked style */
/* .filter-options input[type="checkbox"]:checked { */
    /* background-color:  var(--accent-color); */
    /* Green background */
    /* border-color:  var(--accent-color);
} */

/* Tick (✓) using ::after pseudo element */
/* .filter-options input[type="checkbox"]:checked::after {
    content: '✔';
    color: #fff;
    font-size: 17px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -52%);
} */

/* Optional: increase clickable area */
.filter-options label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 15px;
    cursor: pointer;
    margin-bottom: 0 !important;
}

#desktop-header-search-modal2-2 {
    margin: 0 !important;
}

/* .tag-item {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
} */

label{
    /* font-weight: 100; */
}

.tag-list {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 25px;
}

.tag-list span {
    display: inline-block;
    padding: 3px;
    /* border: 1px solid var(--background-color); */
    /* background-color: var(--background-color); */
    border-radius: 20px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tag-list span:hover {
    /* background-color: var(--background-color); */
    /* border-color: var(--accent-color); */
}

.tag-list span.active {
    /* background-color: var(--accent-color); */
    color: #fff;
    /* border-color: var(--accent-color); */
}

.action-button {
    display: flex;
    justify-content: center;
}

/* Hide the default checkbox */
.tag-list input[type="checkbox"] {
    display: none;
}

/* Style the label as pill */
.tag-list label {
    display: inline-block;
    padding: 4px 10px;
    border: 1px solid #ddd;
    border-radius: 20px;
    font-size: 14px;
    color: #565656;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    background-color: #fff;
}

/* When checkbox is checked, change label style */
.tag-list input[type="checkbox"]:checked+label {

    /* border: 1px solid #2DBE60; */
    /* color: #2DBE60; */
    /* background-color: #2DBE60;
    color: #fff; */
    display: none;
}


.action-button button {
    background-color:  var(--accent-color);
    color: white;
    border: none;
    padding: 5px 60px;
    font-size: 16px;
    border-radius: 7px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.action-button button:hover {
    background-color:  var(--accent-color);
}

.vehicle-type-popup {
    display: none;
    position: absolute;
    left: -20%;
    top: -10%;
    z-index: 999;
    background: var(--widget-background);
    border: 1px solid var(--border-color);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    min-width: 420px;
    border-radius: 16px;
}




/* Responsive Css */
.search-container-sm {
    display: none;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    padding: 12px 16px;
    border-radius: 16px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    width: 100%;
    border: 1px solid rgb(237, 237, 237);
    cursor: pointer;
}

.search-container-sm-icon {
    width: 40px;
    height: 40px;
    background-color: #e7f1ef;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    font-size: 16px;
    color: #004d40;
}

.search-container-sm-icon.right-icon {
    background-color: #003f3f;
    color: #fff;
}

.search-container-sm-content {
    flex: 1;
    margin: 0 12px;
}

.search-container-sm-content h3 {
    /* font-size: 16px; */
    font-weight: 600;
    color: #003D41;
    margin: 0 0 4px;
}

.search-container-sm h3 {
    font-size: 14px;
}

.search-container-sm .header-sm-dynamic-val {
    font-size: 12px !important;
}


.search-container-sm-content p {
    font-size: 12px;
    color: #003d4192;
    margin: 0;
}

.header-badge {
    position: absolute;
    bottom: -2px;
    right: -2px;
    background:  var(--accent-color);
    color: white;
    font-size: 0.7rem;
    font-weight: bold;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 2px solid #fff;
}




/*  Code for side bar */



.custom-sidebar {
    position: absolute;
    padding-top: 5px;
    left: 0;
    top: 0;
    width: 100%;
    margin: 0;
    height: 100%;
    font-family: Arial, sans-serif;
    /* backdrop-filter: ; */
    display: none;
    justify-content: center;
    align-items: start;
    min-height: 100vh;
    z-index: 9990;
    overflow-y: auto;
    overflow-x: hidden;
}
.custom-sidebar::-webkit-scrollbar {
    display: none;
}

.slidebar-custom-trip-container {
    width: 100%;
    max-width: 360px;
    background: #ffffff;
    border: 1px solid #dadada;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    padding: 20px 10px;
    box-sizing: border-box;
    text-align: center;
}

.slidebar-custom-close-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #ddd;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px auto;
    cursor: pointer;
}

/* .slidebar-custom-trip-section {
    background: #f9fbfc;
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 15px;
    text-align: right;
    border: 1px solid rgb(239, 239, 239);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
} */

.slidebar-custom-trip-section span {
    display: block;
    font-size: 12px;
    color: #888;
}

.slidebar-custom-trip-section strong {
    font-size: 16px;
    color: var(--primary-color);
}

.slidebar-custom-trip-section small {
    display: block;
    font-size: 12px;
    color: #555;
    margin-top: 3px;
}

.slidebar-custom-badge {
    display: inline-block;
    padding: 2px 6px;
    font-size: 10px;
    color: #fff;
    background: var(--accent-color);
    border-radius: 8px;
    margin-left: 8px;
}

.slidebar-custom-icon-text {
    display: flex;
    align-items: center;
    gap: 5px;
}

.slidebar-custom-icon-text::before {
    content: "⏱";
}


.sidebar-item-one-expanded,
.sidebar-item-two-expanded,
.sidebar-item-three-expanded {
    display: none;
    position: relative;
    transition: 0.5s;
    margin-bottom: 13px;
}

.sidebar-item-one-minized,
.sidebar-item-two-minized,
.sidebar-item-three-minized,
.sidebar-item-four-minized {

    background: #f9fbfc;
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 15px;
    text-align: right;
    border: 1px solid rgb(239, 239, 239);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
}



/* Sidebar - option - */



/* Parent container */
.sidebar-item-one-expanded {
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    padding: 20px 25px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.sidebar-item-one-expanded h2 {
    font-size: 20px;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-align: left;
    width: 100%;
}

.sidebar-item-one-expanded .option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    border-top: 1px solid #f0f0f0;
    cursor: pointer;
    width: 100%;
    transition: 0.2s ease;
}

.sidebar-item-one-expanded .option:first-of-type {
    border-top: none;
}

.sidebar-item-one-expanded .option-content {
    display: flex;
}

.sidebar-item-one-expanded .icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #e6f5f5;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
    font-size: 20px;
    color: var(--primary-color);
}

.sidebar-item-one-expanded .text h3 {
    font-size: 16px;
    font-weight: bold;
    margin: 0;
    color: var(--primary-color);
    text-align: left;
}

.sidebar-item-one-expanded .text p {
    font-size: 12px;
    margin: 2px 0 0;
    color: #666;
    text-align: left;
}

.sidebar-item-one-expanded .arrow {
    font-size: 1.2rem;
    color: #aaa;
}





.header-sm-calendar-container {
    width: 100%;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin-bottom: 13px;
}

.header-sm-calendar-container h2 {
    width: 100%;
    text-align: left;
    font-size: 18px;
    font-weight: 600;
    color: #0f3e3d;
    margin-bottom: 20px;
}

.header-sm-calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: #0f3e3d;
    margin-bottom: 10px;
}

.header-sm-calendar-header span {
    font-size: 14px;
}

.header-sm-nav-arrow {
    cursor: pointer;
    font-size: 12px;
    background: none;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    width: 32px;
    height: 32px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-sm-calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 6px;
    text-align: center;
}

.header-sm-calendar-grid div {
    padding: 8px 0;
    border-radius: 50%;
    cursor: pointer;
    font-size: 13px;
    color: #333;
}

.header-sm-calendar-grid .header-sm-header {
    font-weight: bold;
    color: #555;
}

.header-sm-calendar-grid .header-sm-active {
    background-color:  var(--accent-color);
    color: white;
}

.header-sm-time-picker {
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    padding: 10px;
    margin-top: 10px;
    cursor: pointer;
    width: 100%;
    transform: unset !important;
    display: flex;
    flex-direction: column;
    text-align: left;
}

.header-sm-time-picker:hover {
    border-color:  var(--accent-color);
}

.header-sm-time-label {
    font-size: 14px;
    color: #333;
}

.header-sm-time-value {
    font-weight: 600;
    font-size: 14px;
    color: #0f3e3d;
}

.header-sm-clock-icon {
    margin-right: 5px;
}



.header-sm-location-container {
    background: #fff;
    padding: 20px 25px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    max-width: 400px;
}

.header-sm-location-container h2 {
    font-size: 18px;
    font-weight: 600;
    color: #0f3e3d;
    margin-bottom: 20px;
    text-align: left;
}

.header-sm-location-group {
    margin-bottom: 16px;
}

.header-sm-location-label {
    font-size: 12px;
    color: #7b8a8d;
    font-weight: 500;
    margin-bottom: 6px;
    display: block;
    text-align: left;
}

.header-sm-location-input-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-sm-location-icon {
    font-size: 14px;
}

.location-icon svg {
    margin-top: 5px;
}

.header-sm-location-input {
    flex: 1;
    padding: 10px 12px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 14px;
    outline: none;
    transition: border 0.3s;
}

.header-sm-location-input:focus {
    border-color:  var(--accent-color);
}

.header-sm-end-location .header-sm-location-input {
    background-color: #f2fbf8;
}

.header-sm-toggle-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
    font-size: 14px;
    color: #333;
}

.header-sm-switch {
    position: relative;
    display: inline-block;
    width: 38px;
    height: 22px;
}

.header-sm-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.header-sm-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.4s;
    border-radius: 34px;
}

.header-sm-slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%;
}

.header-sm-switch input:checked+.header-sm-slider {
    background-color:  var(--accent-color);
}

.header-sm-switch input:checked+.header-sm-slider:before {
    transform: translateX(16px);
}

.mobile-time-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 50px;
    font-size: 12px;
    color: var(--primary-color);
    font-weight: 600;
    border-bottom: 1px solid #F0F0F0;
    cursor: pointer;
    background: none;
    transition: background 0.2s;
    width: 100%;
}

.mobile-time-header {
    height: 300px;
    width: 100%;
    overflow-y: scroll;
}

.mobile-time-selection {
    position: absolute;
    background-color: #ffffff;
    right: 0;
}

.left-dropdown-for-sm-time-piker {
    right: 170px;
}

#where-dropdown {
    transform: translateX(-245px);
}

/* ============================== */
/* counter */
/* ============================== */
.counter-menu-container {
    padding: 5px !important;
    width: 350px !important;
    transform: translateX(-180px) !important;
}

.counter-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    /* border: 1px solid #e0e0e0; */
    padding: 16px;
    border-radius: 8px;
    /* box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1); */
}

.first-counter-container {
    margin-bottom: 5px;
}

.counter-container .label .title {
    font-weight: 600;
    font-size: 16px;
}

.counter-container .label .subtitle {
    font-size: 13px;
    color: #777;
}

.counter-container .controls {
    display: flex;
    align-items: center;
    gap: 12px;
}

.counter-container .btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid #ccc;
    background-color: white;
    font-size: 18px;
    cursor: pointer;
    transition: background 0.2s;
    padding: 0 !important;
}

.counter-container .btn:disabled {
    opacity: 0.3;
    cursor: default;
}

.counter-container #count {
    font-size: 16px;
    width: 20px;
    text-align: center;
}

.add_stop_btn {
    transform: translate(-20px, -4px) !important;

}

.add_stop_btn,
.add_stop_btn-sm {
    background-color: white;
    color:  var(--accent-color);
    border: none;
    outline: none;
    width: 100%;
    text-align: center;
    position: absolute;
    z-index: 99999;
    transform: translateX(-20px);
    padding-bottom: 0px;
}

.add_stop_btn-sm {
    text-align: center;
    transform: translate(-170px, -20px);
    padding-bottom: 0;
}

.meddle-stop-list {
    /* padding-top: 25px; */
}

.location-list-sm {
    padding: 0 !important;
    padding-top: 20px;
}

.sidebar-item-one-expanded .vehicle-type-popup {
    position: absolute;
    left: 0%;
    top: 0%;
    z-index: 999;
    background: var(--widget-background);
    border: 1px solid var(--border-color);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    width: 340px !important;
    border-radius: 16px;
    min-width: unset;
}

.sidebar-item-one-expanded .vehicle-filter {
    width: 340px !important;

}

.location-list-stop {
    max-height: 200px;
    overflow-y: scroll;
}

.location-list-sm {
    max-height: 200px;
    overflow-y: scroll;
    padding-top: 30px;
    margin: 0;
}

.header-sm-location-input-wrapper-first-input {
    margin-bottom: 35px;
}

.location-list-sm .location-item {
    margin-bottom: 35px;
}

.floating-lable-large-sc {
    position: absolute;
    top: 4px;
    left: 10px;
}

.lg-end-location-input {
    margin-top: 22px;
}

.floating-lable-large-sc-ex {
    top: 30px;
}

.header-sm-count-container {
    padding: 5px !important;
}

.header-sm-time-picker-wrapper {
    display: flex;
    width: 100%;
    gap: 5px;
    border-top: 1px solid var(--border-color);
}

/* Modal Callender */
/* --- "When" Dropdown (Calendar) --- */
#modal-calendar-when-dropdown {
    width: 320px;
    padding: 16px;
    margin: 0 auto;
}

.modal-calendar-calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.modal-calendar-month-display {
    text-align: center;
}

.modal-calendar-month-display p {
    font-size: 12px;
    color: var(--primary-color-light);
    margin: 0;
}

.modal-calendar-month-display h5 {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0;
}

.modal-calendar-calendar-nav {
    background: none;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    width: 32px;
    height: 32px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-calendar-calendar-nav:hover {
    background-color: var(--background-color);
}

.modal-calendar-calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
}

.modal-calendar-calendar-grid div {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 36px;
    font-size: 14px;
    cursor: pointer;
    border-radius: 50%;
}

.modal-calendar-calendar-day-name {
    font-weight: 600;
    color: var(--primary-color-light);
    cursor: default !important;
}

.modal-calendar-calendar-date {
    color: var(--primary-color);
    font-weight: bold;
}

.modal-calendar-other-month {
    color: #B0BEC5;
}

.modal-calendar-disabled-date {
    pointer-events: none;
    opacity: 0.5;
}

.modal-calendar-today {
    font-weight: bold;
}

.modal-calendar-selected {
    background-color: var(--accent-color);
    color: white;
    font-weight: bolder;
}

.modal-calendar-calendar-date:not(.modal-calendar-other-month):not(.modal-calendar-selected):hover {
    background-color: var(--border-color);
}

/* --- Time Inputs --- */
.modal-calendar-time-inputs {
    margin-top: 16px;
    border-top: 1px solid var(--border-color);
    padding-top: 16px;
    display: flex;
    width: 100%;
    gap: 5px;
}

.modal-calendar-time-input {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background: var(--widget-background);
    padding: 0 5px;
    min-height: 41px;
    position: relative;
    font-size: 13px;
    color: grey;
    font-weight: normal;
}

.modal-calendar-time-input span {
    font-size: 13px;
    color: grey;
    font-weight: normal;
}

.modal-calendar-time-input .modal-calendar-time {
    font-weight: 600;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 8px;
}

.modal-calendar-time-input .modal-calendar-time svg {
    color: var(--primary-color);
}

.modal-calendar-time-dropdown {
    background: var(--widget-background);
    border-radius: 16px !important;
    box-shadow: 0 4px 24px rgba(0, 61, 65, 0.08);
    border: 1px solid var(--border-color);
    min-width: 220px !important;
    padding: 0 !important;
    margin-top: 8px;
    z-index: 1001;
    max-height: 285px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    touch-action: auto;
    position: absolute;
    left: 0;
    top: 48px;
}

.modal-calendar-time-dropdown ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.modal-calendar-time-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    font-size: 16px;
    color: var(--primary-color);
    font-weight: 600;
    border-bottom: 1px solid #F0F0F0;
    cursor: pointer;
    background: none;
    transition: background 0.2s;
}

.modal-calendar-time-option:last-child {
    border-bottom: none;
}

.modal-calendar-time-option:hover {
    background: var(--background-color);
}

.modal-calendar-option-meta {
    font-size: 13px;
    color: var(--primary-color-light);
    font-weight: 400;
    margin-left: 16px;
}

.modal-calendar-time-input:last-child {
    margin-bottom: 0;
}

.vtf-container {
    background: #fff;
    padding: 25px;
    border-radius: 14px;
    max-width: 450px;
    margin: auto;
}

.vtf-search-input {
    width: 100%;
    padding: 12px 15px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 8px;
    margin-bottom: 20px;
    transition: 0.3s;
}

.vtf-search-input:focus {
    border-color: var(--accent-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.2);
}

.vtf-checkbox-group {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.vtf-checkbox-group label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 15px;
}

.vtf-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
}

.vtf-tags span {
    display: inline-block;
    padding: 8px 16px;
    /* border: 1px solid var(--background-color); */
    /* background-color: var(--background-color); */
    border-radius: 20px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.vtf-tags span:hover {
    /* background-color: var(--background-color); */
    /* border-color: var(--accent-color); */
}

.vtf-tags span.active {
    /* background-color: var(--accent-color); */
    /* color: #fff; */
    /* border-color: var(--accent-color); */
}

.vtf-action {
    display: flex;
    justify-content: center;
}

.vtf-button {
    background-color:  var(--accent-color);
    color: white;
    border: none;
    padding: 14px 28px;
    font-size: 16px;
    border-radius: 10px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.vtf-button:hover {
    background-color:  var(--accent-color);
}

.vtf-popup {
    position: absolute;
    left: -20%;
    top: -10%;
    z-index: 999;
    background: var(--widget-background);
    border: 1px solid var(--border-color);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    min-width: 420px;
    border-radius: 16px;
}

.search-container-sm-content-date-pass-wrapper {
    display: flex;
    justify-content: space-between;
    position: relative;
}

.hader-sm-pass-count {
    position: absolute;
    right: 0;
    top: 40px;
}

.submit-btn-header-sm {
    background-color:  var(--accent-color);
    color: white;
    outline: none;
    border: none;
    margin: 20px auto;
    padding: 10px 25px;
    font-size: 15px;
    border-radius: 7px;
}

.mobile-calendar-date {
    padding: 8px;
    text-align: center;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.2s;
}

.mobile-calendar-date:hover:not(.disabled) {
    background-color: var(--accent-color);
}

.mobile-calendar-date.selected {
    background-color: var(--accent-color);
    color: white;
    font-weight: bolder;
}

.mobile-calendar-date.disabled {
    color: #ccc;
    cursor: not-allowed;
}

.mobile-time-option {
    padding: 10px 15px;
    cursor: pointer;
    border-bottom: 1px solid #eee;
    transition: background-color 0.2s;
}

.mobile-time-option:hover {
    background-color: #f0f0f0;
}

.mobile-time-option:last-child {
    border-bottom: none;
}

.counter-container .btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.counter-container .btn {
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.counter-container .count {
    font-weight: bold;
    min-width: 30px;
    text-align: center;
    display: inline-block;
}

#sidebar-item-four .sidebar-item-four-minized strong {
    font-weight: bold;
    color: #333;
}

/* Date Picker Css */

#when-dropdown .datepicker-inline {
    width: 100% !important;
}

.datepicker table {
    width: 100% !important;
}

.datepicker td,
.datepicker th {
    height: 40px !important;
    width: 40px !important;
    padding: 0 !important;
    border-radius: 50% !important;
}

#when-dropdown .active {
    background-color:  var(--accent-color) !important;
    color: white !important;
    background-image: unset !important;
}

#start-time-value,
#drop_time {
    border: none;
    width: fit-content;
    /* transform: translate(45px, 0px); */
    background: transparent;
    outline: none;
    font-size: 14px;
}

#start-time-value {
    /* transform: translate(35px, 0px); */
    transform: translateY(-3px);
}

#dateTimeSummary {
    display: block;
    width: 135px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

#mobile-prev-btn,
#mobile-next-btn {
    border-radius: 50%;
    padding: 0;
    height: 40px;
    width: 40px;
}

#mobile-start-time,
#mobile-end-time {
    outline: none;
    transform: translateX(13px);
    border: none;
    background-color: transparent;
}

/* Date Picker Css */

.header-sm-calendar-container .datepicker-inline {
    width: 100% !important;
}

.datepicker table {
    width: 100% !important;
}

.datepicker td,
.datepicker th {
    height: 40px !important;
    width: 40px !important;
    padding: 0 !important;
    border-radius: 50% !important;
}

.header-sm-calendar-container .active {
    background-color:  var(--accent-color) !important;
    color: white !important;
    background-image: unset !important;
}

#start-time-value,
#drop_time {
    border: none;
    width: fit-content;
    color: #0f3e3d;
    /* transform: translate(45px, 0px); */
    background: transparent;
    outline: none;
}

#dateTimeSummary {
    display: block;
    width: 135px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

#main_header_vehicle_type_search .filter-options {
    width: fit-content;
}

.filter-option-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-right: 5px;
}

.filter-popup-widht-fixer {
    min-width: 400px;
}

.time-picker-lg-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
}

#mobile-end-time-picker {
    transform: translateX(-78px);
}

.dropdown-position {
    position: relative;
}

#end-time-dropdown-mobile {
    transform: translateX(-87px);
}

#start-time-dropdown-mobile {
    transform: translateX(-7px);
}
.passenger-divider{
    margin: 0 !important;
}
#when_desktop_next_btn.disabled,
#when_mobile_next_btn_sm.disabled,
#where_desktop_next_btn.disabled,
#where_mobile_next_btn_sm.disabled {
    opacity: 0.6;
    pointer-events: none;
    cursor: not-allowed;
    background-color:  var(--accent-color);
    color: var(--widget-background) !important; /* Optional: dim text */
    border-color: #aaa !important; /* Optional: faded border */
}
.time{
    font-weight: 600;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 8px;
}
.time input{
    transform: unset !important;
}
.time-picker-sm{
    width: 50%;
}
.time-picker-sm .time-dropdown{
transform: translateX(-50%) !important;
top:65px !important;
left: 50% !important;
}

.drag-placeholder {
    background-color: transparent !important;
}

#start-time-dropdown-mobile {
    display: none;
    position: absolute;
    top: 48px;
    left: 0;
    z-index: 1001;
    background: var(--widget-background);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    min-width: 120px;
    max-height: 220px;
    overflow-y: auto;
}

@media (max-height:700px) {
    #start-time-dropdown-mobile, #start-time-dropdown {
        top: -210px !important;
    }

    #end-time-dropdown-mobile, #end-time-dropdown {
        top: -210px !important
    }
}
.sm-header-ride-type-time-wrapper{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
#dateFilter td.day{
    /* display: flex;
    align-items: center;
    justify-content: center; */
    min-width: 40px;
    width: 40px;
    height: 40px;
    min-height: 40px;
}

.day.active{
    display: flex;
    align-items: center;
    justify-content: center;
    /* position: relative;
    right: 10px; */
}


.datepicker table tr td.day:hover, .datepicker table tr td.day.focused{
    /* background: transparent !important; */
}
/* 
.xdsoft_datetimepicker *{
    padding: 1px 5px !important;
} */
 #searchHeaderVehicleTypePopup1 .single_check{
    margin-right: 5px;
 }
  #searchHeaderVehicleTypePopup2 .single_check{
    margin-right: 5px;
 }