/* Custom CSS overrides for Route Smart Logistics Console */

/* Override header logo with custom Route Smart Logistics logo */
.logo.navbar-logo img {
    content: url('/assets/img/route-logo.jpeg') !important;
}

/* Hide Launch App button from storefront sidebar */
.next-nav-item[href*="github.com/fleetbase/storefront-app"] {
    display: none !important;
}

/* Alternative selector - hide Launch App button by rocket icon */
.next-nav-item .fa-rocket {
    display: none !important;
}

/* Hide the entire nav item that contains Launch App text */
.next-nav-item:has(.fa-rocket) {
    display: none !important;
}

/* More specific selector for Launch App button */
a.next-nav-item[href="javascript:;"] .fa-rocket {
    display: none !important;
}

/* Hide parent container of Launch App button */
a.next-nav-item[href="javascript:;"]:has(.fa-rocket) {
    display: none !important;
}

/* Target by text content - Launch App */
.next-nav-item .truncate:contains("Launch App") {
    display: none !important;
}

/* Hide any sidebar item with rocket icon and "Launch App" text */
.next-nav-item:has(.fa-rocket):has(.truncate) {
    display: none !important;
}