html, body {
	height: auto !important;
	overflow-y: auto !important;
	overflow-x: hidden;
	-webkit-overflow-scrolling: touch;
}

body {
	font-family: "Lato", sans-serif;
	font-size: 14px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: "Lato", sans-serif;
}

#sidebar {
	transition: transform 0.3s ease, width 0.3s ease, flex 0.3s ease, max-width 0.3s ease;
}

.main-column {
	transition: width 0.3s ease, flex 0.3s ease, max-width 0.3s ease;
}

.h45 {
	height: 45px;
}

/* ── Mobile Top Navbar ── */
.mobile-topbar {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1100;
	height: 56px;
	background: #212529;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 16px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, .4);
}

.mobile-topbar-logo img,
.mobile-topbar-logo .custom-logo {
	height: 36px;
	width: auto;
}

/* Hamburger button */
.mobile-hamburger {
	background: none;
	border: none;
	padding: 4px 6px;
	cursor: pointer;
	display: flex;
	flex-direction: column;
	gap: 5px;
}

.mobile-hamburger span {
	display: block;
	width: 24px;
	height: 2px;
	background: #fff;
	border-radius: 2px;
	transition: transform 0.3s, opacity 0.3s;
}

/* Sidebar close button (mobile) */
.sidebar-close {
	position: absolute;
	top: 10px;
	right: 12px;
	background: none;
	border: none;
	color: rgba(255, 255, 255, .7);
	font-size: 24px;
	line-height: 1;
	cursor: pointer;
	padding: 0;
}

.sidebar-close:hover {
	color: #fff;
}

/* Overlay */
.sidebar-overlay {
	display: none;
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, .55);
	z-index: 1049;
}

.sidebar-overlay.active {
	display: block;
}

/* ── Mobile sidebar styles ── */
@media (max-width: 767.98px) {

	/* Push page content below the fixed topbar */
	body.logged-in {
		padding-top: 56px !important;
	}

	/* If WP admin bar is present (logged-in users), topbar sits below it */
	.admin-bar .mobile-topbar {
		top: 46px;
		/* WP admin bar is 46px on mobile */
	}

	.admin-bar body {
		padding-top: calc(56px + 46px) !important;
	}

	#sidebar {
		position: fixed;
		top: 0;
		left: 0;
		width: 260px !important;
		height: 100vh;
		z-index: 1050;
		transform: translateX(-100%);
		overflow-y: auto;
		padding-top: 56px !important;
	}

	#sidebar.open {
		transform: translateX(0);
	}

	.sidebar-logo {
		display: none;
	}
}

/* Custom Sidebar Styles resembling the requested design */
#sidebar {
	background-color: #1e1e2d !important;
}

.sidebar-logo {
	background-color: #1e1e2d !important;
}

.sidebar-menu .nav-link {
	padding: 0.9rem 1.5rem;
	color: #8a8a97 !important;
	font-weight: 500;
	transition: all 0.3s ease;
	border-radius: 4px;
	margin: 2px 15px;
}

.sidebar-menu .nav-link:hover {
	color: #fff !important;
	background-color: rgba(255, 255, 255, 0.05);
}

.sidebar-menu .nav-link.active,
.sidebar-menu .nav-link[aria-expanded="true"] {
	background-color: #151521 !important;
	color: #fff !important;
	font-weight: 600;
}

.sidebar-menu .nav-link .menu-icon {
	font-size: 1.1rem;
	width: 28px;
	text-align: center;
	margin-right: 12px;
	color: inherit;
}

.sidebar-menu .nav-link .menu-title {
	flex-grow: 1;
}

.submenu-toggle-icon {
	transition: transform 0.3s ease-in-out;
	display: inline-block;
	font-size: 0.85rem;
}

.sidebar-menu .nav-link[aria-expanded="true"] .submenu-toggle-icon {
	transform: rotate(90deg);
}

.submenu-list .nav-link {
	padding: 0.6rem 1.5rem 0.6rem 3.5rem;
	margin: 2px 15px;
	font-size: 0.95em;
}

.custom-logo {
	width: 100%;
	height: auto;
}

.invert-logo img {
	filter: brightness(0) invert(1);
}

.table-responsive {
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
}

.user-menu {
	background: #212529;
	color: #fff;
	border: 0px;
	text-align: center;
	width: 100%;
}

.mainContent {
	display: block;
	padding: 30px;
}

/* ── Collapsible Sidebar Desktop Styles ── */
@media (min-width: 768px) {
	body.sidebar-collapsed #sidebar {
		width: 70px !important;
		flex: 0 0 70px !important;
		max-width: 70px !important;
	}

	body.sidebar-collapsed .main-column {
		width: calc(100% - 70px) !important;
		flex: 0 0 calc(100% - 70px) !important;
		max-width: calc(100% - 70px) !important;
	}

	body.sidebar-collapsed .menu-title,
	body.sidebar-collapsed .submenu-toggle-icon,
	body.sidebar-collapsed .sidebar-text,
	body.sidebar-collapsed .sidebar-logo img,
	body.sidebar-collapsed .sidebar-logo .custom-logo,
	body.sidebar-collapsed .submenu-list {
		display: none !important;
	}

	body.sidebar-collapsed .sidebar-menu .nav-link {
		padding: 0.9rem 0;
		justify-content: center !important;
		margin: 2px 5px;
	}

	body.sidebar-collapsed .sidebar-menu .nav-link .menu-icon {
		margin-right: 0;
		font-size: 1.25rem;
	}

	body.sidebar-collapsed #sidebarToggleDesktop {
		position: static !important;
		margin: 0 auto !important;
		transform: none !important;
		display: block !important;
	}

	body.sidebar-collapsed .sidebar-logo {
		padding: 1rem 0 !important;
	}
}

@media (max-width: 767.98px) {
	.mainContent {
		padding: 15px;
	}
}

/* Forms */
.form-control::placeholder {
	color: #6c757d;
	opacity: 1;
}

input {
	height: 45px;
	line-height: 45px !important;
	background: #ffffff !important;
	border: 1px solid #DCDFE8 !important;
	font-size: 14px !important;
	color: #676E8A !important;
	border-radius: 10px !important;
	box-shadow: none !important;
	transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
	padding: 10px 10px !important;
}

select {
	height: 46px;
	border: 1px solid #DCDFE8;
	transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
	border-radius: 10px;
	padding: 10px 10px;
	background: #fff url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%2301041b' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right 0.75rem center/8px 10px;
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	min-width: 150px;
}

.btn-primary {
	background: rgb(15, 170, 170) !important;
	border: 0px;
}

.btn-primary:hover {
	background: #000 !important;
}

.btn-secondary {
	background: #4d44df !important;
	border: 0px;
}

.table {
	border: 0px !important;
	border-bottom-color: rgb(220, 223, 232);
	border-radius: 20px !important;
	overflow: hidden;
	color: #110A57;
	width: 100%;
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.table th {
	padding: 15px 20px !important;
	text-transform: capitalize;
	font-size: 17px;
	line-height: 22px;
	background: #f4f5fa;
	white-space: nowrap;
}

.table th,
.table tr {
	border-style: none;
	border-bottom: 1px solid #dcdfe8 !important;
}

.table thead {
	border-left: 1px solid #dcdfe8 !important;
	border-radius: 20px !important;
}

.table tbody tr {
	border-left: 1px solid #dcdfe8 !important;
	border-right: 1px solid #dcdfe8 !important;
}

.table td {
	border: 0px;
	border-style: none;
}

.table tr td {
	padding: 20px 20px !important;
	vertical-align: middle;
	border-bottom: 1px solid #DCDFE8;
	font-size: 14px;
	white-space: nowrap;
}

.bootstrap-table .fixed-table-container .table {
	width: 95% !important;
	margin: 15px !important;
}

.card-body {
	padding: 0px;
}

.rounded-table {
	border-collapse: separate;
	border-spacing: 0;
	overflow: hidden;
}

.rounded-table th:first-child {
	border-top-left-radius: 20px;
}

.rounded-table th:last-child {
	border-top-right-radius: 20px;
}

.button-link-delete {
	background: none;
	cursor: pointer;
	font-size: 14px;
	line-height: 14px;
	color: #fff;
	margin-left: 10px;
	padding: 5px 8px;
	background: #fd0a22;
	border: 1px solid #fd0a22;
}

.button-link-delete:hover {
	color: #c82333;
	background: #f5c6cb;
	border: 1px solid #f5c6cb;
}

.header-title {
	font-size: 18px;
}

.cart-heading-wrapper {
	padding: 10px;
	background: #eaeaea;
	border-radius: 5px 5px 0 0;
	margin: 0px;
	font-size: 16px;
	font-weight: 700;
}

#order-cart-form .card-header {
	background: #f4f5fa;
	color: #313131;
	border: 0px;
}

.form-group label {
	font-size: 16px;
}

.ps-abs {
	position: absolute;
	right: 0px;
	bottom: 0px;
	border-radius: 0 0 5px 0px;
}

.order-cart-box {
	border: 1px solid #d0d0d0;
	padding: 30px;
	border-radius: 0 0 5px 5px;
	position: relative;
	border-top: 0px;
}

.kanban-board {
	margin-top: 20px;
}

.kanban-column .card-body {
	background: #f4f4f4;
}

.kanban-column {
	margin-bottom: 20px;
	flex: 1 1 120px;
	min-width: 120px;
}

.kanban-column.Pending .card-header {
	background: #5045e6 !important;
}

.kanban-column.Processing .card-header {
	background: #f69e07 !important;
}

.kanban-column.Dispatch .card-header {
	background: #22c45e !important;
}

.dashboard {
	border: 0px !important;
	margin: 0 auto;
}

.card-header .card-title {
	font-size: 18px !important;
}

.kanban-card {
	background: #fff;
	transition: all 0.3s ease;
	cursor: move;
	user-select: none;
}

.kanban-card:hover {
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	transform: translateY(-2px);
}

.kanban-card.dragging {
	opacity: 0.5;
	transform: rotate(5deg);
}

.kanban-card.hidden {
	display: none;
}

.kanban-orders {
	padding: 5px;
	min-height: 100px;
}

.kanban-orders.drag-over {
	background-color: #e3f2fd;
	border: 2px dashed #2196F3;
	border-radius: 5px;
}

.kanban-board-container {
	margin-left: -30px;
	margin-right: -30px;
	padding-left: 30px;
	padding-right: 30px;
	overflow-x: hidden;
}

@media (max-width: 767.98px) {
	.kanban-board-container {
		margin-left: -15px;
		margin-right: -15px;
		padding-left: 15px;
		padding-right: 15px;
	}
}

.dash-content {
	text-align: center;
}

.order-item {
	background-color: #fff;
}

.card-header {
	font-weight: 600;
	padding: 20px;
}

.kanban-search {
	border-radius: 5px;
}

.droppable-zone {
	transition: background-color 0.2s;
}

.Express.Delivery {
	border: 1px solid #fc6412 !important;
	background-color: #ffd0c5;
}

.form-label {
	font-size: 16px;
	font-weight: 600;
	color: #110A57;
	margin-top: 10px;
	margin-bottom: 0px;
}

.actions a {
	margin-right: 5px;
}

.actions a:hover svg {
	fill: #3498db;
	color: #3498db;
}

.btn-lg {
	height: 45px;
}

.trip-content {
	text-align: left;
}

.trip-item.collection.Red {
	border-left: 5px solid red;
}

.trip-item.collection.Blue {
	border-left: 5px solid blue;
}

.trip-item.collection.Green {
	border-left: 5px solid green;
}

.trip-item.collection.Yellow {
	border-left: 5px solid yellow;
}

.trip-item.collection:hover,
.trip-item:hover {
	background-color: #f4f5fa;
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.trip-item {
	display: flex;
	align-items: center;
	padding: 30px;
	border-radius: 10px;
	max-width: 700px;
	margin: 20px auto;
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.trip-item h4 {
	font-size: 22px;
	font-weight: 700;
	color: #1a1a2e;
	text-align: left;
	margin-bottom: 5px;
}

.trip-item .trip-duration {
	font-size: 16px;
	font-weight: 300;
	color: #110A57;
	display: inline-block;
}

.card-actions {
	text-align: right;
	min-width: 140px;
	margin-left: auto;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 8px;
}

.trip-item .trip-time {
	font-size: 16px;
	font-weight: 300;
	color: #110A57;
	display: inline-block;
	margin-left: 10px;
}

.trip-item .trip-status {
	font-size: 16px;
	font-weight: 300;
	border-radius: 10px;
	color: #fff;
	padding: 5px 10px;
	text-align: center;
}

.trip-status.not-started {
	background: #eaaa82;
}

.trip-status.in-progress {
	background: #82adea;
}

.trip-status.completed {
	background: #90ea82;
}

.trip-status.cancelled {
	background: #ea8282;
}

.trip-anchor {
	text-decoration: none;
}

.trip-distance {
	margin-bottom: 5px;
	color: #616161;
}

.trip-card-head>i {
	flex-shrink: 0;
	width: 60px;
	height: 60px;
	background: #f4f6fb;
	color: #4361ee;
	font-size: 28px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 12px;
	margin-right: 10px;
}

/* ── Responsive Dashboard ── */
@media (max-width: 767.98px) {
	.trip-item {
		flex-direction: column;
		align-items: flex-start;
		padding: 20px;
	}

	.trip-item>i {
		width: 50px;
		height: 50px;
		font-size: 24px;
	}

	.trip-content {
		width: 100%;
	}

	.trip-item h4 {
		font-size: 19px;
	}

	.trip-duration,
	.trip-time {
		font-size: 14px;
		display: block !important;
		margin-left: 0 !important;
		margin-top: 4px;
	}

	.card-actions {
		width: 100%;
		margin-left: 0;
		text-align: left;
		align-items: flex-start;
		border-top: 1px solid #eee;
		padding-top: 15px;
		flex-direction: row;
		justify-content: space-between;
		align-items: center;
	}

	.trip-distance {
		margin-bottom: 0;
		margin: 0 auto;
	}

	.trip-status {
		width: auto;
		min-width: 100px;
	}
}

@media (max-width: 480px) {
	.card-actions {
		flex-direction: column;
		align-items: flex-start;
		gap: 10px;
	}

	.trip-status {
		width: 100%;
	}

	.dp-pickup-controls .select2-container {
		max-width: 150px;
	}
}

button#completeTrip {
	padding: 18px;
}

details {
	border: 1px solid #ddd;
	border-radius: 4px;
	margin-bottom: 10px;
	padding: 20px 20px;
	box-shadow: 10px 5px 15px #efefef;
}

summary {
	font-weight: bold;
	cursor: pointer;
	list-style: none;
}

summary::before {
	content: '>';
	margin-right: 10px;
	transition: transform 0.2s;
}

details[open] summary::before {
	transform: rotate(90deg);
}

.schedule-container {
	max-width: 700px;
	margin: auto;
}

.schedule-container h1,
.schedule-container h3,
.schedule-container .card-title {
	text-align: center;
	margin-bottom: 5px;
}

.subtitle {
	text-align: center;
	color: #666;
	margin-bottom: 5px;
}

.route-duration {
	margin-bottom: 35px;
}

/* Accordion Header */
.hotel {
	background: #fff;
	border-radius: 6px;
	margin-top: 10px;
	padding: 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	cursor: pointer;
	border: 1px solid #ddd;
	font-size: 20px;
	font-weight: 500;
}

.hotel.pending i,
.hotel.done i {
	flex-shrink: 0;
	margin-right: 8px;
	font-size: 20px;
}

.hotel.done i {
	color: #29bb4d;
}

.hotel.pending i {
	color: red;
}

.hotel.done.active i {
	color: #fff;
}

.hotel.done {
	background: var(--light-green);
	border-color: linear-gradient(to right, #3a6fb0, #2f5f9f);
}

.hotel.done.active {
	border-color: linear-gradient(to right, #3a6fb0, #2f5f9f);
}

.hotel.active,
.hotel.active i,
.hotel.active .dp-location-name {
	background: linear-gradient(to right, #3a6fb0, #2f5f9f);
	color: #fff;
}

.status {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	border-radius: 20px;
	padding: 3px 10px;
	font-size: .75rem;
	font-weight: 600;
	background: #d1fadf;
	color: #166534;
}

/* Accordion Body */
.panel {
	display: none;
	background: #fff;
	border: 1px solid #ddd;
	border-top: none;
	padding: 15px;
	margin-bottom: 15px;
	border-radius: 0 0 6px 6px;
}

.panel.open {
	display: block;
}

.cart {
	display: flex;
	justify-content: space-between;
	padding: 8px 0;
	border-bottom: 1px solid #eee;
}

/* .cart:last-child {
	border-bottom: none;
} */

.cart.pending {
	color: #ff8181;
}

.controls {
	display: flex;
	gap: 8px;
	margin-top: 10px;
}

input {
	padding: 8px;
	flex: 1;
}

button {
	padding: 8px 14px;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	font-weight: bold;
}

.btn-blue {
	background: #4361ee;
	color: #fff;
}

.btn-grey {
	background: #b2b2b2;
	color: #fff;
}

.btn-orange {
	background: #e99940;
	color: #fff;
}

.green {
	color: #03d337 !important;
	font-weight: 500;
}

.btn-green {
	background: #29bb4d;
	color: #fff;
}

.btn-disabled {
	background: #bbb;
	cursor: not-allowed;
	color: #fff;
}

.begin {
	margin-top: 30px;
	text-align: center;
}

.begin #beginTrip {
	width: 100%;
	padding: 14px;
	font-size: 18px;
}

.fleet-selection-modern .select2-selection__clear {
	order: 2;
}

.fleet-selection-modern .select2-selection__rendered {
	order: 1;
}

.cart {
	display: flex;
	align-items: center;
	gap: 8px;
}

.cart.scanned {
	color: #2e7d32;
	font-weight: bold;
	border-color: #2e7d32;
	background-color: #f5fff5;
}

.cart .scanned label {
	color: #2e7d32;
}

.remove-scan {
	margin-left: auto;
	background: none;
	border: none;
	color: red;
	font-size: 16px;
	cursor: pointer;
}

.cart-controls {
	display: flex;
	gap: 8px;
	margin-top: 10px;
	margin-bottom: 20px !important;
	align-items: stretch;
}

@media (max-width: 480px) {
	.cart-controls {
		flex-wrap: wrap;
	}

	.cart-controls .cartInput {
		width: 100%;
		flex: 0 0 100%;
	}

	.cart-controls button {
		flex: 1;
		justify-content: center;
	}

	.hotel {
		flex-direction: row !important;
		/* Force horizontal layout */
		align-items: center !important;
		justify-content: space-between !important;
		padding: 12px 15px !important;
		gap: 10px !important;
		font-size: 16px !important;
	}

	.hotel .dp-location-name {
		font-size: 16px !important;
		flex: 1;
		min-width: 0;
		white-space: nowrap;
		overflow: hidden;
		text-overflow: ellipsis;
		display: flex;
		align-items: center;
		gap: 6px;
	}

	.hotel .status {
		margin-left: 0 !important;
		font-size: 11px !important;
		padding: 3px 8px !important;
		white-space: nowrap;
		flex-shrink: 0;
	}
}

.cartInput {
	flex: 1;
	padding: 6px 8px;
	font-size: 14px;
}

.rm-route-list li {
	cursor: pointer;
	padding: 6px 4px;
}

.rm-badge {
	font-size: 11px;
	padding: 2px 6px;
	border-radius: 4px;
	margin-left: 6px;
	color: #fff;
}

.rm-badge.start {
	background: #2e7d32;
}

.rm-badge.end {
	background: #c62828;
}

.fa-map-location-dot {
	color: #3568a8;
	margin-right: 10px;
}

.route-map {
	font-weight: bold;
}

.op-5 {
	opacity: .5;
}

.table-striped {
	border-collapse: separate;
	border-spacing: 0px;
}

.d-block {
	display: block !important;
}

.d-none {
	display: none !important;
}

/* LEFT SIDE */
.left-column {
	flex: 3;
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
	gap: 20px;
	background-color: #fff;
	border-radius: 12px;
	padding: 25px;
}

@media (max-width: 991.98px) {
	.left-column {
		grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
		padding: 15px;
	}
}

/* ORDER CARD */
.order-card {
	background: #ffffff;
	border-radius: 12px;
	padding: 20px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
	transition: 0.3s ease;
	border: 2px dashed hsl(0deg 0% 51.34% / 43.7%);
}

.order-card:hover {
	transform: translateY(-5px);
}

.order-card h3 {
	margin: 0 0 10px;
	font-size: 18px;
	color: #333;
	font-weight: 700;
}

.order-info {
	margin: 8px 0;
	font-size: 14px;
	color: #555;
	display: flex;
	align-items: center;
	gap: 5px;
}

.order-info-sm {
	font-size: 12px;
}

.order-info i {
	color: #959595;
}

.add-btn {
	margin-top: 15px;
	width: 100%;
	padding: 8px;
	border: none;
	border-radius: 8px;
	background: #1cc88a;
	color: white;
	font-size: 14px;
	cursor: pointer;
	transition: 0.3s;
}

.add-btn:hover {
	background: #17a673;
}

/* RIGHT SIDE */
.right-column {
	flex: 1;
	padding: 20px;
	border-radius: 12px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
	background-color: #fff;
	padding: 25px;
	height: fit-content;
}

.right-column h3 {
	margin-top: 0;
}

.selected-order {
	background: #f8f9fc;
	padding: 12px;
	border-radius: 8px;
	margin-bottom: 12px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.selected-info {
	font-size: 14px;
}

.remove-icon {
	color: #e74a3b;
	cursor: pointer;
	transition: 0.3s;
}

.remove-icon:hover {
	transform: scale(1.2);
}

.schedule-btn {
	width: 100%;
	margin-top: 20px;
	padding: 10px;
	border: none;
	border-radius: 8px;
	font-size: 16px;
	cursor: pointer;
	transition: 0.3s;
}

.schedule-btn:hover {
	background: #2e59d9;
}

.pos-container {
	display: flex;
	gap: 20px;
}

@media (max-width: 991.98px) {
	.pos-container {
		flex-direction: column;
	}

	.right-column {
		order: -1;
		/* Keep selected orders on top for smaller screens if preferred, or remove this to keep them at the bottom */
	}
}

@media (max-width: 767.98px) {
	.right-column {
		order: 0;
		/* Let them stack naturally on true mobile */
	}
}

.bg-light {
	background-color: #ededed !important;
}

.nplr {
	padding-left: 0px !important;
	padding-right: 0px !important;
}

/* Dropdown Styling */
.schedule-dropdown {
	margin-top: 20px;
	margin-bottom: 10px;
}

.schedule-dropdown label {
	font-size: 14px;
	font-weight: 600;
	display: block;
	margin-bottom: 6px;
	color: #444;
}

.schedule-dropdown i {
	color: #4e73df;
	margin-right: 5px;
}

.schedule-dropdown select {
	width: 100%;
	padding: 10px;
	border-radius: 8px;
	border: 1px solid #ddd;
	background: #f8f9fc;
	font-size: 14px;
	outline: none;
	transition: 0.3s;
}

.schedule-dropdown select:focus {
	border-color: #4e73df;
	background: #ffffff;
	box-shadow: 0 0 0 2px rgba(78, 115, 223, 0.1);
}

label {
	display: block;
	margin-bottom: 10px;
}

.select2-container .select2-selection--single {
	height: 44px !important;
	padding: 10px 10px !important;
	border-radius: 10px !important;
	border: 1px solid #DCDFE8 !important;
}

.select2-container {
	width: auto !important;
}

.select2-container--default .select2-selection--single .select2-selection__clear {
	margin-top: -5px;
	color: red;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
	top: 10px !important;
}

/* ── Driver Page Shell ── */
.driver-page {
	max-width: 680px;
	margin: 0 auto;
}

.driver-page h1,
.driver-page h3 {
	text-align: center;
}

/* ── Header ── */
.dp-header {
	margin-bottom: 18px;
	text-align: center;
}

.dp-title {
	font-size: 1.35rem;
	font-weight: 700;
	color: #1a1a2e;
	margin-bottom: 4px;
}

.dp-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	font-size: .82rem;
	color: #555;
}

.dp-meta span {
	display: flex;
	align-items: center;
	gap: 5px;
}

/* ── Scan Bar ── */
.dp-scan-bar {
	display: flex;
	gap: 8px;
	margin-bottom: 10px;
	background: #fff;
	border-radius: 5px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, .06);
}

.dp-scan-mode-label {
	font-size: .78rem;
	color: #666;
	text-align: center;
	margin-bottom: 14px;
	letter-spacing: .3px;
}

/* ── Inputs & Buttons ── */
.dp-input {
	flex: 1;
	min-width: 0;
	border: 1.5px solid #d1d9e6;
	border-radius: 8px;
	padding: 9px 12px;
	font-size: .9rem;
	outline: none;
	transition: border-color .2s;
}

.dp-input:focus {
	border-color: #4361ee;
}

.dp-btn {
	border: none;
	border-radius: 8px;
	padding: 9px 14px;
	font-size: .85rem;
	font-weight: 600;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	gap: 5px;
	transition: opacity .2s, transform .1s;
	white-space: nowrap;
}

.dp-btn:active {
	transform: scale(.97);
}

.dp-btn--green {
	background: #2dc653;
	color: #fff;
}

.dp-btn--blue {
	background: #4361ee;
	color: #fff;
}

.dp-btn--ghost {
	background: transparent;
	border: 1.5px solid #c0c8d8;
	color: #555;
	padding: 7px 13px;
}

.dp-btn--end {
	background: #2dc653;
	color: #fff;
	font-size: 1rem;
	padding: 14px 32px;
	border-radius: 5px;
	width: 100%;
	justify-content: center;
}

.dp-btn--disabled,
.dp-btn--end:disabled {
	background: #b0b8c9 !important;
	cursor: not-allowed;
}

/* ── Location Card ── */
.dp-location {
	background: #fff;
	border: 1.5px solid #dde3ee;
	border-radius: 5px;
	margin-bottom: 12px;
	overflow: hidden;
	box-shadow: 0 2px 8px rgba(0, 0, 0, .04);
	transition: border-color .2s;
}

.dp-location--done {
	border-color: #2dc653;
}

.dp-location-header.open {
	background: linear-gradient(to right, #3a6fb0, #2f5f9f);
}

.dp-location-header.open .dp-location-name,
.dp-location-header.open .dp-location-name i {
	color: #fff;
}

.dp-location-header {
	display: flex;
	align-items: center;
	gap: 10px;
	cursor: pointer;
	user-select: none;
	padding: 20px;
}

.dp-location-name {
	flex: 1;
	font-weight: 700;
	font-size: 20px;
	color: #1a1a2e;
	display: flex;
	align-items: center;
	gap: 8px;
}

.dp-icon-done {
	color: #2dc653;
}

.dp-icon-warn {
	color: #f59e0b;
}

.dp-location-status {
	font-size: .78rem;
	color: #888;
}

.dp-badge {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	border-radius: 20px;
	padding: 3px 10px;
	font-size: .75rem;
	font-weight: 600;
}

.dp-badge--done {
	background: #d1fadf !important;
	color: #166534 !important;
}

.dp-badge--warn {
	background: #fef3c7;
	color: #92400e;
}

.dp-chevron {
	color: #aaa;
	font-size: .8rem;
	transition: transform .25s;
}

.dp-location-header.open .dp-chevron {
	transform: rotate(180deg);
}

/* ── Tabs ── */
.dp-location-body {
	display: none;
	border-top: 1px solid #edf0f7;
}

.dp-location-body.open {
	display: block;
	padding: 20px;
}

.dp-tabs {
	display: flex;
	background: #f4f6fb;
	border-bottom: 1px solid #e5e9f4;
}

.dp-tab {
	flex: 1;
	border: none;
	background: none;
	padding: 11px 10px;
	font-size: 16px;
	font-weight: 600;
	color: #666;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	border-bottom: 2px solid transparent;
	transition: color .2s, border-color .2s;
}

.dp-tab--active {
	color: #4361ee;
	border-bottom-color: #4361ee;
	background: #fff;
}

@media (max-width: 480px) {
	.dp-tab {
		padding: 8px 5px;
		font-size: 14px;
		flex-direction: column;
		/* Stack icon and text for more horizontal room */
		gap: 2px;
	}

	.dp-tab i {
		font-size: 18px;
	}

	.dp-tab-badge {
		position: absolute;
		top: 2px;
		right: 2px;
		font-size: 10px;
		padding: 1px 5px;
	}

	.dp-tab {
		position: relative;
	}
}

.dp-tab-badge {
	border-radius: 20px;
	padding: 1px 7px;
	font-size: .72rem;
	font-weight: 700;
}

.dp-tab-badge--ok {
	background: #d1fadf;
	color: #166534;
}

.dp-tab-badge--warn {
	background: #fef3c7;
	color: #92400e;
}

.dp-tab-panel {
	display: none;
	padding: 12px;
	margin-top: 15px;
}

.dp-tab-panel--active {
	display: block;
}

/* ── Drop-off cart items ── */
.dp-cart-item {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 12px 14px;
	border-radius: 10px;
	margin-bottom: 8px;
	border: 1.5px solid #e2e8f0;
	background: #fafbff;
	transition: background .2s, border-color .2s;
}

@media (max-width: 480px) {
	.dp-cart-item {
		padding: 10px;
		gap: 10px;
	}

	.dp-cart-code {
		font-size: 14px;
	}

	.dp-cart-state {
		font-size: 12px;
	}
}

.dp-cart--done {
	border-color: #bbf7d0;
	background: #f0fdf4;
}

.dp-cart--pending {
	border-color: #fde68a;
	background: #fffbeb;
}

.dp-cart-icon {
	font-size: 1.1rem;
}

.dp-cart--done .dp-cart-icon {
	color: #16a34a;
}

.dp-cart--pending .dp-cart-icon {
	color: #d97706;
}

.dp-cart-info {
	flex: 1;
}

.dp-cart-code,
.cart-label {
	font-weight: 700;
	font-size: 16px;
	color: #1a1a2e;
}

.dp-cart-state {
	font-size: 14px;
	color: #888;
	margin-top: 2px;
}

.dp-undo {
	border: none;
	background: #fee2e2;
	color: #dc2626;
	border-radius: 8px;
	padding: 6px 8px;
	cursor: pointer;
	font-size: .8rem;
	display: flex;
	align-items: center;
	transition: background .2s;
}

.dp-undo:hover {
	background: #fca5a5;
}

/* ── Pickup section ── */
.dp-pickup-controls {
	display: flex;
	gap: 7px;
	margin-bottom: 10px;
}

.dp-pickup-list {
	display: flex;
	flex-wrap: wrap;
	gap: 7px;
	margin-bottom: 10px;
}

.dp-pickup-chip {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	background: #eef2ff;
	border: 1.5px solid #c7d2fe;
	border-radius: 10px;
	padding: 5px 12px;
	font-size: .85rem;
	color: #3730a3;
	font-weight: 600;
}

.dp-pickup-remove {
	border: none;
	background: none;
	color: #7c3aed;
	cursor: pointer;
	padding: 0;
	font-size: .8rem;
	display: flex;
	align-items: center;
}

.dp-pickup-footer {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
}

.dp-skip-badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: #f1f5f9;
	border-radius: 10px;
	padding: 9px 12px;
	font-size: .8rem;
	color: #475569;
	font-weight: 600;
}

/* ── End Trip ── */
.dp-end-trip {
	padding: 20px 0 8px;
	text-align: center;
}

.dp-end-hint {
	font-size: .8rem;
	color: #888;
	margin-top: 8px;
}

/* ── Scanner reader ── */
#reader {
	margin: 10px 0;
	border-radius: 10px;
	overflow: hidden;
}

@media (max-width: 480px) {
	.dp-scan-bar {
		flex-wrap: wrap;
	}

	.dp-btn {
		padding: 9px 10px;
		font-size: .8rem;
	}
}

#menu-sidebar-menu .nav-item {
	border-bottom: 1px solid #484848;
	line-height: 35px;
}

#order-count-badge {
	font-size: 14px !important;
}

body.auth-page {
	margin: 0;
	padding: 0;
	font-family: 'Outfit', sans-serif;
	background: #f0f2f5;
	height: 100vh;
	overflow: hidden;
}

.auth-container {
	display: flex;
	height: 100vh;
	width: 100%;
}

.auth-form-section {
	flex: 0 0 55%;
	background: white;
	padding: 60px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	position: relative;
}

.auth-image-section {
	flex: 0 0 45%;
	background: url('/wp-content/uploads/2026/02/login-wincity-.png') center/cover no-repeat;
	position: relative;
}

.image-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.4));
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 40px;
}

.auth-content {
	max-width: 480px;
	margin: 0 auto;
	width: 100%;
}

.brand {
	font-size: 24px;
	font-weight: 700;
	color: var(--text-main);
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 20px;
	max-width: 250px;
}

.brand i {
	color: var(--primary-color);
}

.welcome-text .small-tag {
	text-transform: uppercase;
	letter-spacing: 1px;
	font-size: 11px;
	color: var(--text-muted);
	font-weight: 600;
	margin-bottom: 8px;
}

.welcome-text h1 {
	font-size: 32px;
	font-weight: 700;
	margin-bottom: 40px;
	color: var(--text-main);
}

.auth-image-section .user-info {
	display: flex;
	align-items: center;
	gap: 15px;
	color: white;
	margin-bottom: 20px;
}

.auth-image-section .user-info img {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	border: 2px solid white;
}

.user-info .text strong {
	display: block;
	font-size: 16px;
}

.user-info .text span {
	font-size: 13px;
	opacity: 0.8;
}

.pagination-dots {
	display: flex;
	gap: 8px;
}

.pagination-dots span {
	width: 20px;
	height: 3px;
	background: rgba(255, 255, 255, 0.4);
	border-radius: 2px;
}

.pagination-dots span.active {
	background: white;
	width: 30px;
}

/* Dashboard manual load button */
.dash-content .btn-success {
	padding: 12px 24px;
	font-size: 16px;
	font-weight: 600;
	border-radius: 10px;
	width: 100%;
	max-width: 700px;
	margin-top: 25px !important;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
}

.input-wrapper {
	position: relative;
	background: var(--bg-light);
	border: 1px solid #eee;
	border-radius: 12px;
	transition: all 0.3s;
}

.input-wrapper:focus-within {
	border-color: var(--primary-color);
	background: white;
	box-shadow: 0 0 0 4px rgba(52, 181, 200, 0.1);
}

.input-wrapper i.fa-regular,
.input-wrapper i.fa-solid {
	position: absolute;
	left: 15px;
	top: 50%;
	transform: translateY(-50%);
	color: #b2bec3;
	width: min-content;
}

.input-wrapper input {
	width: 100%;
	border: none;
	background: transparent;
	padding: 14px 15px 14px 45px !important;
	font-family: inherit;
	font-size: 15px;
	outline: none;
}

.input-wrapper .toggle-password {
	left: auto;
	right: 15px;
	cursor: pointer;
}

.checkbox-container {
	display: flex;
	align-items: center;
	gap: 10px;
	cursor: pointer;
	font-size: 14px !important;
	color: var(--text-muted) !important;
	font-weight: 400 !important;
}

.checkbox-container input {
	display: none;
}

.checkmark {
	width: 20px;
	height: 20px;
	border: 1px solid #ddd;
	border-radius: 6px;
	position: relative;
	background: white;
}

.checkbox-container input:checked+.checkmark {
	background: var(--primary-color);
	border-color: var(--primary-color);
}

.checkbox-container input:checked+.checkmark::after {
	content: '✔';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: white;
	font-size: 12px;
}

.forgot-link {
	font-size: 14px;
	color: #b2bec3;
	text-decoration: none;
}

.forgot-link:hover {
	color: var(--primary-color);
}

.btn-primary {
	background: var(--primary-color);
	border: none;
	font-weight: 600;
	color: white;
	cursor: pointer;
	transition: 0.3s;
}

.btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(52, 181, 200, 0.3);
}

.btn-outline-primary {
	background: transparent;
	border: 2px solid var(--primary-color);
	border-radius: 12px;
	padding: 14px;
	font-weight: 600;
	color: var(--primary-color);
	text-decoration: none;
	text-align: center;
	transition: 0.3s;
}

.btn-outline-primary:hover {
	background: var(--primary-color);
	color: white;
}

.auth-footer {
	display: flex;
	justify-content: space-between;
	color: #b2bec3;
	font-size: 13px;
}

.auth-footer a {
	color: inherit;
	text-decoration: none;
}

.alert-error {
	background: #fff5f5;
	color: #e53e3e;
	padding: 12px 15px;
	border-radius: 10px;
	margin-bottom: 25px;
	font-size: 14px;
	border-left: 4px solid #e53e3e;
}

@media (max-width: 991px) {
	.auth-image-section {
		display: none;
	}

	.auth-form-section {
		flex: 0 0 100%;
		padding: 20px 20px;
	}
}

/* ── Global Mobile UI Refinements ── */
@media (max-width: 767.98px) {
	.mainContent {
		padding: 15px !important;
	}

	/* Optimize Header Top Bar */
	div[class*="py-3.bg-white.d-flex"],
	.header-top-parent,
	.mainContent>div:first-child.d-flex {
		padding-top: 10px !important;
		padding-bottom: 10px !important;
		padding-left: 15px !important;
		padding-right: 15px !important;
	}
}

@media (max-width: 480px) {
	.gap-3 {
		gap: 8px !important;
	}

	.header-left h4 {
		font-size: 16px;
	}

	.dropdown-toggle {
		padding: 6px 10px !important;
		font-size: 14px;
	}
}

@media (max-width: 380px) {

	/* Auto-collapse username for more space */
	.dropdown-toggle {
		font-size: 0 !important;
		padding: 6px !important;
	}

	.dropdown-toggle i {
		margin: 0 !important;
		font-size: 20px;
	}

	.dropdown-toggle::after {
		display: none !important;
	}
}

/* ── Cart Checkin Refinements ── */
.checkin-card {
	padding: 20px !important;
	border-radius: 12px !important;
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15) !important;
}

.checkin-card.blue {
	border-left-color: blue !important;
}

.checkin-card.red {
	border-left-color: red !important;
}

@media (max-width: 767.98px) {
	.checkin-card {
		padding: 15px !important;
	}

	.checkin-card h4 {
		font-size: 18px !important;
		margin-bottom: 5px !important;
	}
}

@media (max-width: 480px) {
	.action-buttons {
		flex-direction: column !important;
		gap: 10px !important;
	}

	.action-buttons .btn {
		width: 100% !important;
		padding: 12px !important;
		font-size: 16px !important;
	}
}

.edit-btn {
	border: 1px solid #34b5c8;
	padding: 4px 10px !important;
}

.edit-btn:hover {
	background: #34b5c8 !important;
	color: white !important;
	border: 1px solid #34b5c8 !important;
}

/* Filter Row Refinements */
.filter-row .form-control,
.filter-row .form-select {
	height: 40px !important;
	font-size: 13px !important;
}

@media (max-width: 767.98px) {
	.filter-row .col-6 {
		padding-left: 8px;
		padding-right: 8px;
	}

	.filter-row button {
		height: 40px;
		font-size: 14px;
	}
}

a.view-mode:hover {
	background-color: rgb(15, 170, 170) !important;
	color: white !important;
	border: 1px solid rgb(15, 170, 170) !important;
}

.profile-card {
	transition: transform 0.3s;
}

.cp-header {
	background: linear-gradient(135deg, #1a1a2e 0%, #3a6fb0 100%);
	color: #fff;
}

.view-mode {
	font-size: 16px;
	font-weight: 500;
	min-height: 45px;
	display: flex;
	align-items: center;
}

.edit-mode.form-control {
	height: 45px;
	border-radius: 8px;
	border: 1.5px solid #dee2e6;
}

.edit-mode.form-control:focus {
	border-color: #3a6fb0;
	box-shadow: 0 0 0 0.25rem rgba(58, 111, 176, 0.1);
}

/* Modern Fleet Selector */
.fleet-selection-modern {
	background: #ffffff;
	padding: 20px;
	border-radius: 12px;
	border: 1px solid #e2e8f0;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
	text-align: left;
	display: flex;
	align-items: center;
	gap: 20px;
}

.fleet-selection-modern label {
	font-size: 20px;
	color: #475569;
	margin-bottom: 0 !important;
	white-space: nowrap;
	flex-shrink: 0;
}

.select2-wrapper-premium {
	flex: 1;
}

.select2-wrapper-premium .select2-container--default .select2-selection--single {
	height: 50px !important;
	padding: 12px 15px !important;
	border-radius: 10px !important;
	border-color: #cbd5e1 !important;
	background-color: #f8fafc !important;
	transition: all 0.2s ease;
	display: flex;
	align-items: center;
}

.select2-wrapper-premium .select2-container--default.select2-container--focus .select2-selection--single {
	border-color: #4361ee !important;
	background-color: #ffffff !important;
	box-shadow: 0 0 0 4px rgba(67, 97, 238, 0.1) !important;
}

.select2-wrapper-premium .select2-container--default .select2-selection--single .select2-selection__arrow {
	top: 12px !important;
	right: 10px !important;
}

@media (max-width: 768.98px) {
	.fleet-selection-modern {
		padding: 15px;
		flex-direction: column;
		align-items: flex-start;
		gap: 10px;
	}

	.fleet-selection-modern label {
		white-space: normal;
	}

	.select2-wrapper-premium {
		width: 100%;
	}

	.select2-wrapper-premium .select2-container--default .select2-selection--single {
		height: 48px !important;
		font-size: 14px;
	}
}

/* Check-in Page Styles */
.ci-page .checkin-container {
	max-width: 900px;
	margin: 2rem auto;
	padding: 0 1rem;
}

.ci-page .premium-card {
	background: #fff;
	border: none;
	border-radius: 16px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
	overflow: hidden;
}

.ci-page .premium-card-header {
	background: linear-gradient(135deg, #1a1a2e 0%, #3a6fb0 100%);
	padding: 1.5rem 2rem;
	color: #fff;
}

.ci-page .premium-card-header h2 {
	margin: 0;
	font-size: 1.5rem;
	font-weight: 700;
	display: flex;
	align-items: center;
	gap: 12px;
}

.ci-page .premium-card-body {
	padding: 2.5rem;
}

.ci-page .form-section-title {
	font-size: 1.1rem;
	font-weight: 700;
	color: #1e293b;
	margin-bottom: 1.5rem;
	display: flex;
	align-items: center;
	gap: 8px;
	border-bottom: 2px solid #f1f5f9;
	padding-bottom: 10px;
}

.ci-page .cart-entry-row {
	background: #f8fafc;
	border: 1px solid #e2e8f0;
	border-radius: 12px;
	padding: 1.5rem;
	margin-bottom: 1rem;
	position: relative;
	transition: all 0.2s;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.ci-page .cart-entry-row:hover {
	border-color: #cbd5e1;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.ci-page .remove-cart-row {
	position: absolute;
	top: -10px;
	right: -10px;
	width: 28px;
	height: 28px;
	background: #ef4444;
	color: #fff;
	border: none;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3);
	transition: transform 0.2s;
	z-index: 10;
}

.ci-page .remove-cart-row:hover {
	transform: scale(1.1);
	background: #dc2626;
}

.ci-page .add-cart-btn {
	background: #f1f5f9;
	color: #475569;
	border: 2px dashed #cbd5e1;
	width: 100%;
	padding: 1rem;
	border-radius: 12px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.2s;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
}

.ci-page .add-cart-btn:hover {
	background: #e2e8f0;
	border-color: #94a3b8;
	color: #1e293b;
}

.ci-page .submit-container {
	margin-top: 2.5rem;
	display: flex;
	gap: 1rem;
}

.ci-page .btn-submit-premium {
	background: #2dc653;
	color: #fff;
	border: none;
	padding: 1rem 2.5rem;
	border-radius: 12px;
	font-weight: 700;
	font-size: 1.1rem;
	flex: 1;
	cursor: pointer;
	box-shadow: 0 4px 15px rgba(45, 198, 83, 0.3);
	transition: all 0.2s;
}

.ci-page .btn-submit-premium:hover {
	background: #25a344;
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(45, 198, 83, 0.4);
}

.ci-page .btn-cancel-premium {
	background: #fff;
	color: #64748b;
	border: 1px solid #e2e8f0;
	padding: 1rem 2rem;
	border-radius: 12px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.2s;
}

.ci-page .btn-cancel-premium:hover {
	background: #f8fafc;
	color: #1e293b;
}

.ci-page .select2-container--default .select2-selection--single {
	height: 50px !important;
	padding: 10px 15px !important;
	border-radius: 10px !important;
	border: 1px solid #e2e8f0 !important;
	background: #f8fafc !important;
}

.ci-page .select2-container--default .select2-selection--single .select2-selection__arrow {
	top: 12px !important;
}

.ci-page .form-floating-label {
	font-size: 0.85rem;
	font-weight: 600;
	color: #64748b;
	margin-bottom: 8px;
	display: block;
}

@media (max-width: 768px) {
	.ci-page .premium-card-body {
		padding: 1.5rem;
	}

	.ci-page .order-cart-box {
		flex-direction: column;
		gap: 1rem;
	}
}

form#checkin-form {
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

/* ==========================================================================
   Order Detail Page (OD-PAGE) - Premium Modern Styles
   ========================================================================== */
.od-page {
	background-color: #f1f5f9;
	min-height: 400px;
}

.order-detail-container {
	padding: 40px 0px;
	max-width: 1200px;
	margin: 0 auto;
}

.od-page .premium-card {
	background: #ffffff;
	border-radius: 20px;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
	border: 1px solid rgba(226, 232, 240, 0.8);
	overflow: hidden;
}

.od-page .premium-card-header {
	padding: 2rem 2.5rem;
	background: linear-gradient(to right, #ffffff, #f8fafc);
	border-bottom: 1px solid #f1f5f9;
}

.od-page .order-number-title {
	font-size: 1.1rem;
	color: #64748b;
	font-weight: 500;
}

.od-page .status-badge {
	padding: 0.5rem 1.25rem;
	border-radius: 8px;
	font-weight: 600;
	font-size: 16px;
	text-transform: uppercase;
	display: inline-block;
}

.od-page .status-processing,
.od-page .status-ready-to-dispatch,
.od-page .status-dispatch-order-created,
.od-page .status-waiting-for-pickup,
.od-page .status-out-for-delivery {
	background: #a2d2ea;
	color: #0d97b6;
}

.od-page .status-draft {
	background: #ff1414;
	color: #ffffff;
}

.od-page .status-pending {
	background: #fee2e2;
	color: #991b1b;
}

.od-page .status-delivered {
	background: #dcfce7;
	color: #166534;
}

.od-page .status-in-progress {
	background: #fef9c3;
	color: #854d0e;
}

/* Metadata Grid */
.od-page .order-meta-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 1.5rem;
	padding: 1rem;
}

.od-page .meta-item {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 1.25rem;
	background: #f8fafc;
	border-radius: 16px;
	transition: transform 0.2s ease;
}

.od-page .meta-item:hover {
	transform: translateY(-2px);
}

.od-page .meta-icon {
	width: 45px;
	height: 45px;
	background: #ffffff;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #3b82f6;
	font-size: 1.2rem;
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.od-page .meta-label {
	display: block;
	font-size: 0.75rem;
	color: #94a3b8;
	text-transform: uppercase;
	font-weight: 600;
	margin-bottom: 2px;
}

.od-page .meta-value {
	display: block;
	font-size: 0.95rem;
	color: #1e293b;
	font-weight: 600;
}

/* Tabs Styling */
.od-page .custom-modern-tabs {
	padding: 0 25px;
}

.od-page .custom-modern-tabs .nav-link {
	border: none;
	color: #9c9c9c;
	padding: 1rem 1.5rem;
	font-weight: 600;
	font-size: 0.95rem;
	border-bottom: 2px solid transparent;
	transition: all 0.3s ease;
	background: linear-gradient(135deg, #e3e3e3 0%, #cccccc 100%) !important;
}

.od-page .custom-modern-tabs .nav-link:hover {
	color: #3b82f6;
}

.od-page .custom-modern-tabs .nav-link.active {
	color: #ffffff !important;
	background: linear-gradient(135deg, #4e73df 0%, #224abe 100%) !important;
	border-bottom-color: #3b82f6 !important;
}

/* Cart Grid & Cards */
.od-page .cart-cards-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
	gap: 1.5rem;
}

.od-page .mini-premium-card {
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 16px;
	padding: 1.5rem;
	transition: box-shadow 0.3s ease;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.od-page .mini-premium-card:hover {
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.od-page .mini-card-header {
	margin-bottom: 1.25rem;
}

.od-page .badge.bg-soft-primary {
	background: #eff6ff;
	color: #1d4ed8;
}

.od-page .badge.bg-soft-success {
	background: #f0fdf4;
	color: #15803d;
}

.od-page .cart-info-row {
	display: flex;
	justify-content: space-between;
	padding: 0.5rem 0;
	border-bottom: 1px solid #f8fafc;
}

.od-page .cart-info-row:last-child {
	border-bottom: none;
}

.od-page .cart-info-row .label {
	color: #64748b;
	font-size: 0.9rem;
}

.od-page .cart-info-row .value {
	color: #1e293b;
	font-weight: 600;
}

.od-page .cart-info-row .value.highlight {
	color: #3b82f6;
	font-size: 1.1rem;
}

.od-page .cart-info-row .value.highlight-success {
	color: #22c55e;
	font-size: 1.1rem;
}

/* Mini Table for Products */
.od-page .modern-mini-table {
	width: 100%;
}

.od-page .modern-mini-table th {
	padding: 0.5rem;
	font-size: 0.7rem;
	text-transform: uppercase;
	color: #94a3b8;
	background: #f8fafc;
	border-radius: 4px;
}

.od-page .modern-mini-table td {
	padding: 0.75rem 0.5rem;
	font-size: 0.85rem;
	color: #475569;
	border-bottom: 1px solid #f1f5f9;
}

.od-page .small-label {
	display: block;
	font-size: 0.75rem;
	font-weight: 700;
	color: #475569;
	text-transform: uppercase;
}

/* Empty State */
.od-page .empty-state {
	text-align: center;
	padding: 4rem 2rem;
	color: #94a3b8;
}

.od-page .empty-state i {
	font-size: 3rem;
	opacity: 0.3;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
	.order-detail-container {
		padding: 1rem;
	}

	.od-page .premium-card-header {
		padding: 1.5rem;
	}

	.od-page .cart-cards-grid {
		grid-template-columns: 1fr;
	}

	.od-page .order-meta-grid {
		grid-template-columns: 1fr;
	}
}

div#orderCartTabsContent {
	padding: 0 25px;
}

/* Dashboard Status Cards */
.sc-card {
	border-radius: 6px;
	padding: 25px 20px;
	color: #fff;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.sc-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 6px 15px rgba(0, 0, 0, 0.12);
}

.sc-header {
	font-size: 15px;
	font-weight: 600;
	margin-bottom: 20px;
	opacity: 0.95;
}

.sc-body {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.sc-icon i {
	font-size: 40px;
	opacity: 0.85;
}

.sc-count {
	font-size: 40px;
	font-weight: 700;
	line-height: 1;
	margin: 0;
}

.sc-draft {
	background: #ff6584;
}

.sc-pending {
	background: #5045e6;
}

.sc-processing {
	background: #f69e07;
}

.sc-dispatch {
	background: #22c45e;
}

.sc-card-link {
	text-decoration: none;
}

.bootstrap-table .fixed-table-container .table thead th .th-inner {
	padding: .75rem 0 !important;
}

/* Order Status Board (Kanban) - High Density */
.kanban-board-container {
	scrollbar-width: thin;
}

.kanban-wrapper {
	gap: 0.5rem !important;
}

.kanban-column {
	min-width: 155px !important;
	font-size: 0.8rem;
}

.kanban-column-header {
	position: sticky;
	top: 0;
	background: #fff;
	z-index: 10;
	padding: 0.5rem !important;
}

.kanban-column-header h2 {
	font-size: 0.7rem !important;
	letter-spacing: 0.02em;
}

.kanban-column-body {
	padding: 0.25rem !important;
	gap: 0.25rem !important;
}

.kanban-card .card-body {
	padding: 0.5rem !important;
}

.small-badge {
	font-size: 0.65rem !important;
	white-space: nowrap;
	padding: 2px 4px !important;
}

.kanban-card h3 {
	font-size: 0.75rem !important;
}

.kanban-card {
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.kanban-card:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1) !important;
}

/* Status-specific column headers */
.kanban-column:nth-child(1) .kanban-column-header {
	border-top: 4px solid #adb5bd;
}

/* Draft */
.kanban-column:nth-child(2) .kanban-column-header {
	border-top: 4px solid #0dcaf0;
}

/* Pending */
.kanban-column:nth-child(3) .kanban-column-header {
	border-top: 4px solid #fd7e14;
}

/* Processing */
.kanban-column:nth-child(4) .kanban-column-header {
	border-top: 4px solid #6f42c1;
}

/* Ready to Dispatch */
.kanban-column:nth-child(5) .kanban-column-header {
	border-top: 4px solid #0d6efd;
}

/* Dispatch Order Created */
.kanban-column:nth-child(6) .kanban-column-header {
	border-top: 4px solid #ffc107;
}

/* Waiting for Pickup */
.kanban-column:nth-child(7) .kanban-column-header {
	border-top: 4px solid #198754;
}

/* Out for Delivery */
.kanban-column:nth-child(8) .kanban-column-header {
	border-top: 4px solid #ffc107;
}

/* Additional catch-all */
.kanban-column:nth-child(9) .kanban-column-header {
	border-top: 4px solid #198754;
}

.txt-small {
	font-size: 12px !important;
	white-space: nowrap !important;
}

#translate-btn {
	position: fixed;
	bottom: 24px;
	right: 24px;
	z-index: 9999;
	background: #0faaaa;
	color: #fff;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	cursor: pointer;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
	transition: transform 0.2s ease;
}

#translate-btn:hover {
	transform: scale(1.1);
}

#google_translate_element {
	position: fixed;
	bottom: 82px;
	right: 24px;
	z-index: 9998;
	background: #fff;
	border-radius: 10px;
	padding: 8px;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

/* ── Tracking Card ────────────────────────────────── */
.tc-container {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	align-items: stretch;
	gap: 24px;
	width: 100%;
}

.tracking-card {
	background: linear-gradient(135deg, #4e73df 0%, #224abe 100%);
	color: #fff;
	border-radius: 16px;
	padding: 28px 24px;
	flex: 0 0 calc(25% - 18px);
	min-width: 280px;
	display: flex;
	flex-direction: column;
	box-shadow: 0 8px 32px rgba(34, 74, 190, 0.35);
}

@media (max-width: 1400px) {
	.tracking-card {
		flex: 0 0 calc(33.333% - 16px);
	}
}

@media (max-width: 991.98px) {
	.tracking-card {
		flex: 0 0 calc(50% - 12px);
	}
}

@media (max-width: 767.98px) {
	.tracking-card {
		flex: 0 0 100%;
	}
}

.tc-status-draft,
.tc-status-pending,
.tc-status-weight-pending {
	background: linear-gradient(135deg, #64748b 0%, #334155 100%) !important;
	box-shadow: 0 8px 32px rgba(51, 65, 85, 0.35) !important;
}

.tc-status-picked-up {
	background: linear-gradient(135deg, #7c3aed 0%, #4c1d95 100%) !important;
	box-shadow: 0 8px 32px rgba(124, 58, 237, 0.35) !important;
}

.tc-status-out-for-delivery {
	background: linear-gradient(135deg, #f59e0b 0%, #b45309 100%) !important;
	box-shadow: 0 8px 32px rgba(245, 158, 11, 0.35) !important;
}

.tc-status-delivered {
	background: linear-gradient(135deg, #10b981 0%, #064e3b 100%) !important;
	box-shadow: 0 8px 32px rgba(16, 185, 129, 0.35) !important;
}

.tc-header {
	margin-bottom: 16px;
}

.tc-order-id {
	font-size: 1.35rem;
	font-weight: 700;
	letter-spacing: 1px;
}

.tc-schedule {
	font-size: 0.8rem;
	color: rgba(255, 255, 255, 0.65);
	margin-top: 3px;
}

.tc-badges {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
	margin-bottom: 20px;
}

.tc-badge {
	padding: 4px 14px;
	border-radius: 999px;
	font-size: 0.78rem;
	font-weight: 600;
	white-space: nowrap;
}

.tc-badge-status {
	background: rgba(255, 255, 255, 0.15);
	color: #fff;
	border: 1px solid rgba(255, 255, 255, 0.3);
}

.tc-badge-info {
	background: rgba(255, 255, 255, 0.1);
	color: rgba(255, 255, 255, 0.8);
	border: 1px solid rgba(255, 255, 255, 0.2);
}

.tc-badge-weight {
	background: #166534;
	color: #dcfce7;
}

/* Timeline */
.tc-timeline {
	position: relative;
	padding-left: 30px;
}

.tc-timeline-line {
	position: absolute;
	left: 9px;
	top: 10px;
	bottom: 10px;
	width: 2px;
	border-left: 2px dashed rgba(255, 255, 255, 0.25);
}

.tc-step {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	margin-bottom: 20px;
	position: relative;
}

.tc-step:last-child {
	margin-bottom: 0;
}

.tc-dot {
	width: 30px;
	height: 30px;
	border-radius: 50%;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-left: -35px;
	z-index: 1;
}

.tc-dot i {
	font-size: 12px;
	color: #fff;
}

.tc-step-text {
	transition: opacity 0.2s;
}

.tc-step-label {
	font-weight: 600;
	font-size: 0.9rem;
}

.tc-step-sub {
	font-size: 0.75rem;
	color: rgba(255, 255, 255, 0.6);
	margin-top: 2px;
}

/* Active/Current Step Highlighting */
.tc-step-current .tc-dot {
	box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.2);
	animation: tc-pulse 2s infinite;
}

.tc-step-current .tc-step-label {
	color: #fff;
	font-weight: 700;
	font-size: 1rem;
}

.tc-step-current .tc-step-sub {
	color: rgba(255, 255, 255, 0.9);
}

@keyframes tc-pulse {
	0% {
		box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
	}

	70% {
		box-shadow: 0 0 0
	}
}

/* ==========================================================================
Order Popup - Modern Material Design
========================================================================== */
.order-popup-details {
	padding: 0.25rem;
	font-family: inherit;
}

/* Material Modal Override */
.modal-content {
	border-radius: 24px !important;
	box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1) !important;
	border: none !important;
}

/* Material Typography */
.order-popup-details .h4 {
	letter-spacing: -0.5px;
	color: #0f172a;
}

.order-popup-details .text-muted {
	color: #64748b !important;
}

/* Material Badges (Pills) */
.order-popup-details .status-badge {
	padding: 6px 16px;
	border-radius: 100px;
	font-size: 0.7rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.8px;
	border: none;
}

.order-popup-details .status-delivered {
	background-color: #dcfce7;
	color: #166534;
}

.order-popup-details .status-waiting-for-pickup {
	background-color: #dbeafe;
	color: #1e40af;
}

.order-popup-details .status-out-for-delivery {
	background-color: #fef3c7;
	color: #92400e;
}

.order-popup-details .status-processing {
	background-color: #fce7f3;
	color: #9d174d;
}

.order-popup-details .status-pending {
	background-color: #ffedd5;
	color: #9a3412;
}

.order-popup-details .status-draft {
	background-color: #f1f5f9;
	color: #475569;
}

/* Material Timeline */
.order-popup-timeline {
	position: relative;
	padding-left: 28px;
	margin: 24px 0;
}

.order-popup-timeline::before {
	content: '';
	position: absolute;
	left: 9px;
	top: 8px;
	bottom: 8px;
	width: 2px;
	background-color: #f1f5f9;
}

.ot-item {
	position: relative;
	padding-bottom: 24px;
}

.ot-item:last-child {
	padding-bottom: 0;
}

.ot-dot {
	position: absolute;
	left: -28px;
	top: 4px;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background-color: #fff;
	border: 2px solid #e2e8f0;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.ot-item.completed .ot-dot {
	background-color: #3b82f6;
	border-color: #3b82f6;
	box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.15);
}

.ot-label {
	display: block;
	font-size: 0.65rem;
	font-weight: 800;
	color: #94a3b8;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin-bottom: 2px;
}

.ot-value {
	display: block;
	font-size: 0.9rem;
	font-weight: 600;
	color: #334155;
}

/* Material Cards */
.cart-cards-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 1.5rem;
	margin-top: 20px;
}

.order-popup-details .mini-premium-card {
	background-color: #ffffff;
	border: 1px solid #f1f5f9;
	border-radius: 20px;
	padding: 1.5rem;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.order-popup-details .mini-premium-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1);
}

.mini-card-header .badge {
	border-radius: 8px;
	background-color: rgba(59, 130, 246, 0.1);
	color: #3b82f6;
	font-weight: 700;
	padding: 6px 10px;
}

.cart-info-row {
	margin-top: 16px;
	padding-top: 16px;
	border-top: 1px solid #f8fafc;
	display: flex;
	justify-content: space-between;
}

.split-pill {
	border-radius: 9999px;
	padding: 5px;
	display: inline-flex;
	justify-content: space-between;
	background: linear-gradient(-70deg, #77EFD3 48%, white 48%, white 52%, #CED2D9 52%);
}

.split-pill.out {
	background: linear-gradient(-70deg, #EF7788 48%, white 48%, white 52%, #CED2D9 52%);
}

.left {
	padding-left: 10px;
}

.right {
	padding-right: 5px;
	padding-left: 30px;
}

/* Dry Cleaning Styles */
.status-badge {
	padding: 6px 16px;
	border-radius: 50px;
	font-size: 0.85rem;
	font-weight: 700;
	display: inline-block;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.status-order-placed {
	background-color: #e3f2fd;
	color: #0d47a1;
	border: 1px solid #bbdefb;
}

.status-picked-up {
	background-color: #fff3e0;
	color: #e65100;
	border: 1px solid #ffe0b2;
}

.status-out-for-delivery {
	background-color: #f3e5f5;
	color: #4a148c;
	border: 1px solid #e1bee7;
}

.status-delivered {
	background-color: #e8f5e9;
	color: #1b5e20;
	border: 1px solid #c8e6c9;
}

#dcOrderModal .btn-check:checked+.btn-outline-primary {
	background-color: #0faaaa;
	color: #fff;
	border-color: #0faaaa;
	box-shadow: 0 4px 12px rgba(15, 170, 170, 0.3);
}

#dcOrderModal .btn-check:checked+.btn-outline-warning {
	background-color: #ffc107;
	color: #000;
	border-color: #ffc107;
	box-shadow: 0 4px 12px rgba(255, 193, 7, 0.3);
}

.dc-history-table tr {
	transition: background-color 0.2s;
}

.dc-history-table tr:hover {
	background-color: #f8f9fa;
}

/* Dry Cleaning Modern Card Design */
.dc-modern-card {
	background: #ffffff;
	border-radius: 20px;
	box-shadow: 0 10px 40px rgba(31, 38, 135, 0.08);
	transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	height: 100%;
	max-width: 480px;
	margin: 0 auto;
	border: 1px solid rgba(0, 0, 0, 0.03);
}

.dc-modern-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 15px 50px rgba(31, 38, 135, 0.12);
}

.dc-card-accent {
	height: 8px;
	width: 100%;
}

.accent-pickup {
	background: linear-gradient(90deg, #00d2ff 0%, #3a7bd5 100%);
}

.accent-dropoff {
	background: linear-gradient(90deg, #f2994a 0%, #f2c94c 100%);
}

.dc-card-body {
	padding: 1.5rem;
	flex-grow: 1;
}

.dc-customer-header {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-bottom: 1.25rem;
	border-bottom: 1px solid #f1f3f5;
	padding-bottom: 1rem;
}

.dc-hotel-name {
	font-size: 1.2rem;
	font-weight: 800;
	color: #1a1a1a;
	margin: 0;
}

.dc-status-pill {
	font-size: 0.6rem;
	text-transform: uppercase;
	letter-spacing: 1px;
	padding: 4px 10px;
	border-radius: 50px;
	font-weight: 800;
	white-space: nowrap;
}

.pill-pickup {
	background: #e0f7fa;
	color: #00838f;
	border: 1px solid rgba(0, 131, 143, 0.1);
}

.pill-dropoff {
	background: #fff8e1;
	color: #f57f17;
	border: 1px solid rgba(245, 127, 23, 0.1);
}

.dc-section-label {
	font-size: 0.65rem;
	text-transform: uppercase;
	color: #adb5bd;
	font-weight: 700;
	letter-spacing: 1px;
	margin-bottom: 0.5rem;
	display: block;
}

.dc-info-group {
	background: #f8f9fa;
	border-radius: 12px;
	padding: 1rem;
	margin-bottom: 1rem;
	text-align: left;
}

.dc-info-row {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 0.4rem;
	color: #495057;
	font-size: 0.9rem;
}

.dc-info-row:last-child {
	margin-bottom: 0;
}

.dc-info-row i {
	width: 18px;
	text-align: center;
	color: #0d8c8c;
	font-size: 0.9rem;
}

.dc-info-row.highlight {
	font-weight: 700;
	color: #1a1a1a;
}

.dc-info-row.address {
	align-items: flex-start;
}

.dc-info-row.address i {
	margin-top: 4px;
}

.dc-action-area {
	padding: 0 1.5rem 1.5rem;
}

.btn-dc-action {
	border-radius: 12px;
	padding: 12px 15px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 1px;
	border: none;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	width: 100%;
	font-size: 0.85rem;
}

.btn-pickup {
	background: #0faaaa;
	color: white;
}

.btn-pickup:hover {
	background: #0d8c8c;
	box-shadow: 0 6px 20px rgba(15, 170, 170, 0.3);
}

.btn-dropoff {
	background: #f2994a;
	color: white;
}

.btn-dropoff:hover {
	background: #e68a39;
	box-shadow: 0 6px 20px rgba(242, 153, 74, 0.3);
}

.dc-map-link {
	color: #3a7bd5;
	font-weight: 700;
	text-decoration: none !important;
	transition: color 0.2s;
}

.dc-map-link:hover {
	color: #00d2ff;
}

/* ── Consolidated Premium Management Cards ── */
.premium-management-card {
	border: none !important;
	border-radius: 20px !important;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08) !important;
	overflow: hidden;
	background: #fff;
}

.premium-card-header {
	background: linear-gradient(135deg, #1e1e2d 0%, #2c2c3d 100%);
	padding: 1.5rem 2rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.premium-card-header h5 {
	color: #fff;
	font-weight: 700;
	letter-spacing: 0.5px;
	margin: 0;
}

/* ── Dashboard Tabs ── */
.dashboard-tabs-container {
	margin-bottom: 2rem;
	display: flex;
	justify-content: center;
	padding: 0.5rem;
	overflow-x: auto;
	max-width: 100%;
	width: 100%;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none; 
}

.dashboard-tabs-container::-webkit-scrollbar {
	display: none;
}

.dashboard-nav-pills {
	background: rgba(255, 255, 255, 0.9);
	padding: 6px;
	border-radius: 16px;
	backdrop-filter: blur(10px);
	border: 1px solid rgba(0, 0, 0, 0.05);
	position: relative;
	display: flex;
	flex-wrap: nowrap; /* CRITICAL: Prevent stacking */
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
	min-width: max-content;
}

.dashboard-nav-pills .nav-item {
	position: relative;
	z-index: 2;
	flex: 0 0 auto;
}

.dashboard-nav-pills .nav-link {
	border-radius: 12px;
	padding: 0.8rem 1.8rem;
	font-weight: 600;
	color: #646c9a;
	transition: color 0.3s ease;
	border: none;
	display: flex;
	align-items: center;
	background: transparent !important;
	white-space: nowrap; /* CRITICAL: Keep text on one line */
}

@media (max-width: 767px) {
	.dashboard-tabs-container {
		justify-content: flex-start; /* Left align on mobile for scroll */
		padding-left: 1rem;
		padding-right: 1rem;
	}
	.dashboard-nav-pills .nav-link {
		padding: 0.7rem 1.2rem;
		font-size: 0.9rem;
	}
}

.dashboard-nav-pills .nav-link i {
	font-size: 1.1rem;
	margin-right: 0.75rem;
}

.dashboard-nav-pills .nav-link.active {
	color: #fff !important;
}

.dashboard-nav-pills .nav-link:not(.active):hover {
	color: #0faaaa;
}

/* Sliding Indicator */
.nav-indicator {
	position: absolute;
	height: calc(100% - 12px);
	background: #0faaaa;
	background: linear-gradient(135deg, #0faaaa 0%, #0d8a8a 100%);
	border-radius: 12px;
	transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
	z-index: 1;
	box-shadow: 0 4px 15px rgba(15, 170, 170, 0.3);
}

.dc-table {
	width: 100%;
}

.dc-table thead th {
	background: #f8f9fa;
	color: #8a8a97;
	font-size: 0.8rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	padding: 12px 20px;
	border: none;
}

.dc-table tbody tr {
	background: #fff;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
	transition: all 0.3s ease;
}

.dc-table tbody tr:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 18px rgba(0, 0, 0, 0.06);
}

.dc-table tbody td {
	padding: 20px;
	vertical-align: middle;
	border-top: 1px solid #f1f1f4;
	border-bottom: 1px solid #f1f1f4;
}

.dc-table tbody td:first-child {
	border-left: 1px solid #f1f1f4;
	border-top-left-radius: 12px;
	border-bottom-left-radius: 12px;
}

.dc-table tbody td:last-child {
	border-right: 1px solid #f1f1f4;
	border-top-right-radius: 12px;
	border-bottom-right-radius: 12px;
}

/* ── Service & Status Pills ── */
.badge-pill-premium {
	padding: 6px 14px;
	border-radius: 50px;
	font-weight: 700;
	font-size: 0.75rem;
	text-transform: uppercase;
	display: inline-flex;
	align-items: center;
	gap: 6px;
}

.pill-service-express {
	background: rgba(255, 152, 0, 0.1);
	color: #ef6c00;
	border: 1px solid rgba(255, 152, 0, 0.2);
}

.pill-service-normal {
	background: rgba(15, 170, 170, 0.1);
	color: #0d8c8c;
	border: 1px solid rgba(15, 170, 170, 0.2);
}

.pill-status-placed {
	background: #e3f2fd;
	color: #1976d2;
}

.pill-status-picked {
	background: #fff3e0;
	color: #f57c00;
}

.pill-status-processing {
	background: #f3e5f5;
	color: #7b1fa2;
}

.pill-status-ready {
	background: #e8f5e9;
	color: #388e3c;
}

.pill-status-delivered {
	background: #e8f5e9;
	color: #2e7d32;
}


.dc-order-id {
	font-weight: 800;
	color: #1e1e2d;
	font-family: 'Monaco', 'Consolas', monospace;
}

.dc-guest-info {
	display: flex;
	flex-direction: column;
}

.dc-guest-name {
	font-weight: 700;
	color: #1e1e2d;
	margin-bottom: 2px;
}

.dc-guest-room {
	font-size: 0.8rem;
	color: #8a8a97;
}

.dc-date-box {
	display: flex;
	flex-direction: column;
	font-size: 0.85rem;
}

.dc-date-label {
	color: #b5b5c3;
	font-size: 0.7rem;
	font-weight: 600;
	text-transform: uppercase;
}

.dc-date-value {
	color: #464e5f;
	font-weight: 600;
}