/* ==========================================================================
   Route Planner - Enterprise UI Styles
   Applies to: /Routes/RoutePlan/Get and related views
   ========================================================================== */

/* ---------------------------------------------------------------------------
   1. Landing Page Header
   --------------------------------------------------------------------------- */

.route-plans--newhead {
    gap: 12px;
}

.route-planshead-searchwrap input {
    font-size: 13px;
    padding: 8px 12px 8px 32px;
    border: 1px solid #E0E0E0;
    transition: border-color 0.2s ease;
    outline: none;
}

    .route-planshead-searchwrap input:focus {
        border-color: #1A73E8;
        box-shadow: 0 0 0 2px rgba(26, 115, 232, 0.1);
    }

.route-planshead-searchwrap {
    position: relative;
}

    .route-planshead-searchwrap::before {
        content: "\f002";
        font-family: FontAwesome;
        position: absolute;
        left: 10px;
        top: 50%;
        transform: translateY(-50%);
        color: #9E9E9E;
        font-size: 12px;
        z-index: 1;
        pointer-events: none;
    }

.route-planshead-datewrap #daterange-picker-report {
    border: 1px solid #E0E0E0;
    transition: border-color 0.2s ease;
}

    .route-planshead-datewrap #daterange-picker-report:hover {
        border-color: #BDBDBD;
    }

    .route-planshead-datewrap #daterange-picker-report > i:first-child {
        display: none;
    }

.route-planshead-newinfo .btn-blue-new {
    font-weight: 500;
    letter-spacing: 0.3px;
    transition: background-color 0.2s ease, box-shadow 0.2s ease;
}

    .route-planshead-newinfo .btn-blue-new:hover {
        background-color: #1A73E833;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    }

.route-plans-title-counterlabel {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 24px;
    height: 24px;
    padding: 0 6px;
    border-radius: 12px;
    background-color: #1A73E81A;
    color: #1A73E8;
    font-size: 13px;
    font-weight: 600;
    line-height: 1;
}


/* ---------------------------------------------------------------------------
   2. Route Plan Cards (_Get.cshtml)
   --------------------------------------------------------------------------- */

.routeplanslistingbox {
    border-radius: 10px;
    transition: box-shadow 0.2s ease;
}

    .routeplanslistingbox:hover {
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    }

    .routeplanslistingbox.active {
        box-shadow: 0 2px 12px rgba(26, 115, 232, 0.15);
    }

.routeplanslistingboxTopradiusUpperLeft > div:first-child > span {
    display: inline-block;
    max-width: 200px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    font-size: 15px;
    font-weight: 600;
    color: #1C1C1C;
    line-height: 1.3;
}

.badgewrap {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
}

    .badgewrap > span {
        font-size: 12px;
        line-height: 1;
        padding: 4px 8px;
        border-radius: 6px;
    }

/* Status pill consistent colors */
.badgewrap .task-status-pill {
    color: #D32F2F;
    background-color: #FFEBEE;
}

.badgewrap .task-status-pill-draft {
    color: #546E7A;
    background-color: #ECEFF1;
}

.badgewrap .task-status-pill-optimize {
    color: #E65100;
    background-color: #FFF3E0;
}

.badgewrap .task-status-pill-dispatched {
    color: #2E7D32;
    background-color: #E8F5E9;
}

.rp-status-failed {
    color: #fff !important;
    background-color: #EF5350 !important;
    font-size: 12px;
    line-height: 1;
    padding: 4.5px 7px;
    border-radius: 6px;
}

/* Created By / time metadata */
.routeplanslistingboxTopradiusUpperLeft > div:last-child p {
    font-size: 12px;
    color: #9E9E9E;
}

    .routeplanslistingboxTopradiusUpperLeft > div:last-child p span {
        color: #616161;
    }

/* Badge row */
.routeplanslistingboxTopradiusLower .routes--badge {
    flex: 1 1 auto;
    min-width: 0;
}

.routeplanslistingboxTopradiusLower .routes-badge-body {
    font-size: 13px;
}

    .routeplanslistingboxTopradiusLower .routes-badge-body img {
        opacity: 0.6;
    }

/* Optimized routes table */
.routeplanslistingboxTopInfo .table {
    margin-bottom: 0;
    font-size: 13px;
}

    .routeplanslistingboxTopInfo .table thead th {
        font-size: 11px;
        font-weight: 600;
        text-transform: uppercase;
        color: #9E9E9E;
        letter-spacing: 0.3px;
        border-bottom: 1px solid #F3F3F3;
        padding: 8px 10px;
        white-space: nowrap;
    }

    .routeplanslistingboxTopInfo .table tbody tr {
        transition: background-color 0.15s ease;
    }

        .routeplanslistingboxTopInfo .table tbody tr:hover {
            background-color: #FAFAFA;
        }

    .routeplanslistingboxTopInfo .table tbody td {
        padding: 8px 10px;
        vertical-align: middle;
        border-top: 1px solid #F5F5F5;
        font-size: 13px;
    }

.textclamplimit {
    max-width: 120px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.limit-text-wrap {
    max-width: 140px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Not-optimized / In-progress / Failed bottom card */
.routeplanslistingboxBottom .gray-radius-card {
    border: 1px solid #F3F3F3;
    border-radius: 0 0 10px 10px;
    padding: 12px 16px !important;
    font-size: 13px;
    color: #616161;
    background-color: #FAFAFA;
}

.rp-info-card {
    background-color: #FFF8E1 !important;
    border-color: #FFE082 !important;
    color: #F57F17 !important;
}

.rp-error-card {
    background-color: #FFF5F5 !important;
    border-color: #FFCDD2 !important;
    color: #D32F2F !important;
}

.rp-info-card span,
.rp-error-card span {
    font-size: 13px;
    line-height: 1.5;
}

/* Create Plan button in card */
.button-normal.button-blue {
    font-size: 13px;
    font-weight: 500;
    padding: 6px 16px;
    border: none;
    border-radius: 6px;
    background-color: #1A73E8;
    color: #fff;
    cursor: pointer;
    transition: background-color 0.2s ease;
    white-space: nowrap;
}

    .button-normal.button-blue:hover {
        background-color: #1565C0;
    }

/* Rejected stops detail table */
.rp-rejected-detail {
    margin-top: 8px;
    max-height: 150px;
    overflow-y: auto;
    border-radius: 6px;
    border: 1px solid #FFCDD2;
    background-color: #fff;
}

    .rp-rejected-detail table {
        width: 100%;
        font-size: 12px;
        margin: 0;
    }

        .rp-rejected-detail table th {
            padding: 6px 10px;
            text-align: left;
            background-color: #FFF5F5;
            border-bottom: 1px solid #FFCDD2;
            font-weight: 600;
            color: #616161;
        }

        .rp-rejected-detail table td {
            padding: 5px 10px;
            border-bottom: 1px solid #F5F5F5;
        }

        .rp-rejected-detail .rp-reject-reason {
            color: #EF5350;
        }

/* No records empty state */
.rp-empty-state {
    text-align: center;
    padding: 60px 20px;
    color: #9E9E9E;
}

    .rp-empty-state img {
        max-width: 180px;
        opacity: 0.7;
        margin-bottom: 16px;
    }

    .rp-empty-state .no-route-plans {
        display: block;
        font-size: 16px;
        font-weight: 600;
        color: #616161;
        margin-bottom: 6px;
    }

    .rp-empty-state .btn {
        margin-top: 16px;
    }

/* Right side map area */
.routes-trips-wrap {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 8px 12px;
    margin-bottom: 8px;
    background-color: #FAFAFA;
    border-radius: 8px;
    font-size: 13px;
    color: #616161;
}

    .routes-trips-wrap span span {
        font-weight: 600;
        color: #1A73E8;
        margin-left: 4px;
    }


/* ---------------------------------------------------------------------------
   3. Add/Edit Sidebar (_AddEdit.cshtml)
   --------------------------------------------------------------------------- */

.routeCalendername_title {
    padding-bottom: 12px;
    border-bottom: 1px solid #F3F3F3;
    margin-bottom: 12px;
}

    .routeCalendername_title h2 {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 16px;
        margin: 0;
    }

        .routeCalendername_title h2 .back-button {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 32px;
            height: 32px;
            border-radius: 8px;
            color: #616161;
            transition: background-color 0.2s ease;
        }

            .routeCalendername_title h2 .back-button:hover {
                background-color: #F5F5F5;
            }

    .routeCalendername_title .planTitleSection___Styledmain {
        margin-top: 8px;
    }

        .routeCalendername_title .planTitleSection___Styledmain .form-control {
            font-size: 14px;
            border: 1px solid #E0E0E0;
            border-radius: 6px;
            padding: 6px 10px;
            transition: border-color 0.2s ease;
        }

            .routeCalendername_title .planTitleSection___Styledmain .form-control:focus {
                border-color: #1A73E8;
                box-shadow: 0 0 0 2px rgba(26, 115, 232, 0.1);
            }

/* Start/End location */
.routesetupwrapbox {
    margin-top: 8px;
}

.routesetupwrapbox .locationwrap {
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
    max-width: none;
    min-width: 0;
}

.routesetupwrapbox .location {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 8px;
    background-color: #FAFAFA;
    border-radius: 6px;
    font-size: 13px;
}

    .routesetupwrapbox .location .text {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 24px;
        height: 24px;
        border-radius: 6px;
        font-size: 12px;
        font-weight: 700;
        color: #fff;
        flex-shrink: 0;
    }

    .routesetupwrapbox .location:first-child .text {
        background-color: #43A047;
    }

    .routesetupwrapbox .location:last-child .text {
        background-color: #E53935;
    }

    .routesetupwrapbox .location label {
        margin: 0;
        font-size: 13px;
        font-weight: 400;
        color: #424242;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        flex: 1;
        min-width: 0;
    }

    .routesetupwrapbox .location label ~ label {
        flex: none;
        color: #9E9E9E;
        font-size: 11px;
        margin-left: auto;
    }

    .routesetupwrapbox .locationwrap::before {
        left: 15px;
        top: 18px;
        height: calc(100% - 36px);
    }

/* Drivers & Stops sections */
.driver_stops_module_wrap {
    border: 1px solid #F3F3F3;
    border-radius: 8px;
    padding: 12px;
    margin-top: 12px;
}

.driverListMain_title_wrap {
    font-size: 14px;
    font-weight: 600;
    color: #424242;
    padding-bottom: 8px;
    border-bottom: 1px solid #F3F3F3;
}

.optimize-process {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 22px;
    height: 22px;
    padding: 0 5px;
    border-radius: 11px;
    background-color: #1A73E81A;
    color: #1A73E8;
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
}

/* Add/Search/Import buttons */
.addBig_radius_blue_bttn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 500;
    padding: 7px 14px;
    border-radius: 6px;
    border: 1px solid #E0E0E0;
    background-color: #fff;
    color: #424242;
    cursor: pointer;
    transition: all 0.2s ease;
}

    .addBig_radius_blue_bttn:hover {
        border-color: #1A73E8;
        color: #1A73E8;
        background-color: #F5F9FF;
    }

    .addBig_radius_blue_bttn svg {
        width: 18px;
        height: 18px;
    }

.blue_radius_bttn_icon__solid {
    background-color: #1A73E8;
    color: #fff;
    border-color: #1A73E8;
}

    .blue_radius_bttn_icon__solid:hover {
        background-color: #1565C0 !important;
        border-color: #1565C0 !important;
        color: #fff !important;
    }

    .blue_radius_bttn_icon__solid svg path {
        fill: #fff;
    }

.blue_radius_bttntransparent {
    background-color: transparent;
    border: 1px dashed #BDBDBD;
    color: #757575;
}

    .blue_radius_bttntransparent:hover {
        border-color: #1A73E8;
        border-style: solid;
        color: #1A73E8;
    }

/* Bottom footer buttons */
.task-list-footer {
    padding: 12px 16px;
    border-top: 1px solid #F3F3F3;
    background-color: #fff;
}

    .task-list-footer .rounded-bttn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 10px 24px;
        font-size: 14px;
        font-weight: 600;
        border-radius: 8px;
        cursor: pointer;
        transition: background-color 0.2s ease, box-shadow 0.2s ease;
    }

        .task-list-footer .rounded-bttn:hover {
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
        }

.rounded-bttn--cancel {
    background-color: #fff !important;
    color: #D32F2F !important;
    border: 1px solid #E0E0E0 !important;
}

    .rounded-bttn--cancel:hover {
        background-color: #FFF5F5 !important;
        border-color: #FFCDD2 !important;
        color: #D32F2F !important;
    }


/* ---------------------------------------------------------------------------
   4. Optimization Results (_GetOptimizeRoute.cshtml)
   --------------------------------------------------------------------------- */

/* Summary badges row */
.rp-summary-badges {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
}

    .rp-summary-badges .routes-badge {
        background-color: #F5F7FA;
        border: 1px solid #E8ECF1;
        border-radius: 8px;
        padding: 8px 12px;
        font-size: 13px;
        color: #424242;
    }

        .rp-summary-badges .routes-badge img {
            opacity: 0.6;
            margin-right: 4px;
        }

        .rp-summary-badges .routes-badge span {
            font-weight: 600;
            color: #1A73E8;
        }

/* Tabs */
.rp-tabs {
    list-style: none;
    display: flex;
    gap: 0;
    margin: 0;
    padding: 0;
    border-bottom: 2px solid #F3F3F3;
}

    .rp-tabs li {
        margin: 0;
    }

        .rp-tabs li a {
            display: inline-block;
            padding: 10px 16px;
            font-size: 13px;
            font-weight: 500;
            color: #9E9E9E;
            border-bottom: 2px solid transparent;
            margin-bottom: -2px;
            transition: color 0.2s ease, border-color 0.2s ease;
            cursor: pointer;
            text-decoration: none;
        }

            .rp-tabs li a:hover {
                color: #616161;
            }

            .rp-tabs li a.active {
                color: #1A73E8;
                border-bottom-color: #1A73E8;
            }

            .rp-tabs li a font {
                font-weight: 600;
            }

/* Route/Trip cards (accordion) */
.round-wrap-section {
    border: 1px solid #F3F3F3;
    border-radius: 8px;
    margin-bottom: 8px;
    overflow: hidden;
    transition: box-shadow 0.2s ease;
}

    .round-wrap-section:hover {
        box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
    }

.route-planning-wrap {
    margin: 0;
    cursor: pointer;
}

    .route-planning-wrap td {
        padding: 10px 12px !important;
        border: none !important;
    }

.driver-info-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
}

.driver-info-left {
    flex-shrink: 0;
}

    .driver-info-left .fa-user {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 32px;
        height: 32px;
        border-radius: 8px;
        font-size: 14px;
    }

.driver-info-right {
    flex: 1;
    min-width: 0;
}

    .driver-info-right p {
        margin: 2px 0 0 0;
        font-size: 12px;
        color: #9E9E9E;
    }

    .driver-info-right .routes-badges-wrap {
        margin-top: 6px;
    }

    .driver-info-right .routes-badge {
        font-size: 12px;
        padding: 3px 8px;
    }

/* Trip name editable input */
.planTitleSection___Styledmain_left .form-control {
    font-size: 14px;
    font-weight: 500;
    border: 1px solid transparent;
    border-radius: 4px;
    padding: 2px 6px;
    transition: border-color 0.2s ease;
}

    .planTitleSection___Styledmain_left .form-control:hover {
        border-color: #E0E0E0;
    }

    .planTitleSection___Styledmain_left .form-control:focus {
        border-color: #1A73E8;
        box-shadow: 0 0 0 2px rgba(26, 115, 232, 0.1);
    }

.route-point-dispatched .planTitleSection___Styledmain_left .form-control {
    border-color: transparent;
    background-color: transparent;
}

/* Stop list (within trip) */
.location-wrapper {
    padding: 0 12px 8px;
}

.location-box {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
    position: relative;
}

    .location-box + .location-box {
        border-top: 1px solid #F9F9F9;
    }

.location-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: #F5F7FA;
    flex-shrink: 0;
    font-size: 12px;
    color: #616161;
    margin-left: 4px;
}

    .location-icon .fa-home {
        color: #43A047;
    }

    .location-icon .fa-flag {
        color: #E53935;
    }

.location-icon.location-text {
    font-weight: 600;
    font-size: 12px;
    color: #1A73E8;
    background-color: #E8F0FE;
}

.location-left {
    flex: 1;
    min-width: 0;
    font-size: 13px;
    color: #424242;
}

    .location-left a {
        color: #424242;
        font-weight: 500;
    }

        .location-left a:hover {
            color: #1A73E8;
        }

.location-right time {
    font-size: 12px;
    color: #9E9E9E;
    white-space: nowrap;
}

/* Time window inline display */
.rp-time-window {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    color: #1976D2;
    font-size: 11px;
    margin-left: 3px;
}

    .rp-time-window .fa-clock-o {
        font-size: 11px;
    }

/* Rejected stops in optimization view */
#UnAssignedDiv .driver-info-wrap {
    padding: 8px 12px;
    border: 1px solid #F3F3F3;
    border-radius: 8px;
    margin-bottom: 6px;
}

#UnAssignedDiv .driver-info-right p:last-child {
    color: #EF5350;
    font-size: 12px;
}

#tblUnAssougnedStops {
    margin-bottom: 0;
    border: none;
}


/* ---------------------------------------------------------------------------
   5. Optimization Processing Popup
   --------------------------------------------------------------------------- */

.optimizeprocessmodal {
    text-align: center;
    padding: 40px 30px;
}

    .optimizeprocessmodal h3 {
        font-size: 16px;
        font-weight: 400;
        color: #616161;
        margin: 0;
    }

.rp-spinner {
    display: inline-block;
    width: 40px;
    height: 40px;
    border: 3px solid #E0E0E0;
    border-top-color: #1A73E8;
    border-radius: 50%;
    animation: rp-spin 0.8s linear infinite;
    margin-bottom: 20px;
}

@keyframes rp-spin {
    to {
        transform: rotate(360deg);
    }
}

.rp-optimize-subtitle {
    display: block;
    font-size: 13px;
    color: #9E9E9E;
    margin-top: 8px;
}


/* ---------------------------------------------------------------------------
   6. Map Controls
   --------------------------------------------------------------------------- */

.rp-map-controls {
    position: absolute;
    right: 49px;
    bottom: 140px;
    z-index: 10;
}

    .rp-map-controls .btn-group-vertical {
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
        border-radius: 8px;
        overflow: hidden;
    }

        .rp-map-controls .btn-group-vertical .btn {
            border: none;
            border-radius: 0;
            background-color: #fff;
            color: #616161;
            padding: 8px 10px;
            font-size: 14px;
            transition: background-color 0.15s ease;
        }

            .rp-map-controls .btn-group-vertical .btn:hover {
                background-color: #F5F5F5;
                color: #1A73E8;
            }

            .rp-map-controls .btn-group-vertical .btn + .btn {
                border-top: 1px solid #F3F3F3;
            }


/* ---------------------------------------------------------------------------
   7. Selected Stops List (_GetSelectedStops.cshtml)
   --------------------------------------------------------------------------- */

#RoutePlanSelectedStopsSlimScroll .driver-details {
    padding: 0;
}

    #RoutePlanSelectedStopsSlimScroll .driver-details hr {
        margin: 6px 0;
        border-color: #F5F5F5;
    }

.contact-driver-details {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 6px;
}

.contact-driver-details-left .driver-img {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: #E8F0FE;
    color: #1A73E8;
    font-size: 12px;
    font-weight: 600;
}

.contact-driver-details-center {
    flex: 1;
    min-width: 0;
    font-size: 13px;
}

    .contact-driver-details-center a {
        display: block;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        font-weight: 500;
        color: #424242;
    }

        .contact-driver-details-center a:hover {
            color: #1A73E8;
        }

.contact-driver-details-right a {
    opacity: 0.4;
    transition: opacity 0.2s ease;
}

    .contact-driver-details-right a:hover {
        opacity: 1;
    }

    .contact-driver-details-right a img {
        width: 16px;
    }

/* Pickup / Delivery location badges (icon + text pill style) */
.rp-location-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 2px 8px;
    font-size: 11px;
    font-weight: 500;
    border-radius: 50px;
    flex-shrink: 0;
    line-height: 1.4;
}

.rp-location-badge img {
    width: 10px;
    height: 10px;
}

.rp-location-badge--pickup {
    color: #1A73E8;
    background: rgba(26, 115, 232, 0.1);
}

.rp-location-badge--delivery {
    color: #2DB67E;
    background: rgba(45, 182, 126, 0.1);
}

.rp-location-badge--start {
    color: #43A047;
    background: rgba(67, 160, 71, 0.1);
}

.rp-location-badge--end {
    color: #E53935;
    background: rgba(229, 57, 53, 0.1);
}

.rp-location-badge--invalid {
    border: 1px solid red;
}

/* Task date picker - full width when pending task icon not present */
.task-datetime-picker-section button.task-datetime-picker-wrap:only-child {
    max-width: 100%;
}

/* Task card view - S/E/P/D styled badges */
.dispatch-map-start,
.dispatch-map-end {
    width: 17px;
    height: 17px;
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: bold;
    margin-right: 8px;
    margin-left: -4px;
}

.dispatch-map-start {
    background: #43A047;
}

.dispatch-map-end {
    background: #E53935;
}

/* Hide li::before circle when using styled badges */
.all--task--list--location-wrap ul li:has(.dispatch-map-pickup)::before,
.all--task--list--location-wrap ul li:has(.dispatch-map-delivery)::before,
.all--task--list--location-wrap ul li:has(.dispatch-map-start)::before,
.all--task--list--location-wrap ul li:has(.dispatch-map-end)::before,
.all--task--list--location-wrap1 ul li:has(.dispatch-map-pickup)::before,
.all--task--list--location-wrap1 ul li:has(.dispatch-map-delivery)::before,
.all--task--list--location-wrap1 ul li:has(.dispatch-map-start)::before,
.all--task--list--location-wrap1 ul li:has(.dispatch-map-end)::before {
    border-color: transparent;
    background: transparent;
}

/* Stoppage two-line layout */
.rp-stop-line1 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.rp-stop-line2 {
    width: 100%;
    margin-top: 7px;
    margin-left: 10px !important;
}

/* Optimized route - allow stop name to use full available width */
#OptimizeRouteDiv .location-left {
    max-width: 100%;
}

#OptimizeRouteDiv .location-left .detail-driver-name {
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
