.gbcm {
	--gbcm-navy: #12334a;
	--gbcm-blue: #176b87;
	--gbcm-gold: #dcaa45;
	--gbcm-bg: #f4f7f9;
	--gbcm-line: #d9e2e7;
	--gbcm-danger: #a72d35;
	color: #172b35;
	font-family: Arial, sans-serif;
	max-width: 1120px;
	margin: 24px auto;
}

.gbcm *,
.gbcm *::before,
.gbcm *::after {
	box-sizing: border-box;
}

.gbcm h2 {
	color: var(--gbcm-navy);
	font-size: clamp(1.45rem, 3vw, 2rem);
	margin: 0 0 20px;
}

.gbcm h3 {
	color: var(--gbcm-navy);
	margin: 26px 0 12px;
}

.gbcm-kicker {
	color: var(--gbcm-blue);
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.13em;
	margin: 0 0 5px;
	text-transform: uppercase;
}

.gbcm-header {
	align-items: start;
	border-bottom: 2px solid var(--gbcm-gold);
	display: flex;
	justify-content: space-between;
	margin-bottom: 22px;
	padding-bottom: 12px;
}

.gbcm-header h2 {
	margin: 0;
}

.gbcm-card,
.gbcm-result,
.gbcm-help {
	background: #fff;
	border: 1px solid var(--gbcm-line);
	border-radius: 8px;
	margin: 16px 0;
	padding: 22px;
}

.gbcm-search {
	background: var(--gbcm-bg);
	border-radius: 8px;
	margin-bottom: 22px;
	padding: 20px;
}

.gbcm label,
.gbcm-label {
	color: #415762;
	display: block;
	font-size: 0.9rem;
	font-weight: 700;
	margin-bottom: 6px;
}

.gbcm input,
.gbcm select,
.gbcm textarea {
	background: #fff;
	border: 1px solid #bfcdd5;
	border-radius: 5px;
	color: #172b35;
	display: block;
	font: inherit;
	margin-top: 7px;
	min-height: 43px;
	padding: 9px 11px;
	width: 100%;
}

.gbcm textarea {
	min-height: auto;
}

.gbcm-inline {
	display: flex;
	gap: 10px;
}

.gbcm-inline input {
	margin-top: 0;
}

.gbcm-button {
	align-items: center;
	background: var(--gbcm-blue);
	border: 0;
	border-radius: 5px;
	color: #fff !important;
	cursor: pointer;
	display: inline-flex;
	font-size: 0.94rem;
	font-weight: 700;
	justify-content: center;
	min-height: 43px;
	padding: 10px 18px;
	text-decoration: none !important;
}

.gbcm-button:hover {
	background: var(--gbcm-navy);
}

.gbcm-button-secondary {
	background: #38487c;
}

.gbcm-download-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.gbcm-button-small {
	font-size: 0.82rem;
	min-height: 36px;
	padding: 7px 12px;
}

.gbcm-status-heading {
	align-items: center;
	display: flex;
	justify-content: space-between;
	margin-bottom: 22px;
}

.gbcm-status-heading strong {
	color: var(--gbcm-navy);
	display: block;
	font-size: 1.35rem;
}

.gbcm-pill {
	background: #e1f0f2;
	border-radius: 999px;
	color: var(--gbcm-blue);
	display: inline-block;
	font-size: 0.84rem;
	font-weight: 700;
	padding: 7px 12px;
	white-space: nowrap;
}

.gbcm-details {
	background: var(--gbcm-bg);
	display: grid;
	gap: 8px 14px;
	grid-template-columns: auto 1fr;
	margin: 0;
	padding: 18px;
}

.gbcm-details dt {
	color: #546b75;
	font-weight: 700;
}

.gbcm-details dd {
	margin: 0;
}

.gbcm-package-details {
	margin-bottom: 14px;
}

.gbcm-timeline {
	border-left: 2px solid var(--gbcm-line);
	list-style: none;
	margin: 12px 0 0 8px;
	padding-left: 22px;
}

.gbcm-timeline li {
	margin: 0 0 18px;
	position: relative;
}

.gbcm-timeline li::before {
	background: var(--gbcm-blue);
	border: 3px solid #fff;
	border-radius: 50%;
	content: "";
	height: 13px;
	left: -29px;
	position: absolute;
	top: 4px;
	width: 13px;
}

.gbcm-timeline time,
.gbcm-timeline strong,
.gbcm-timeline span {
	display: block;
}

.gbcm-timeline time {
	color: #607782;
	font-size: 0.83rem;
}

.gbcm-metrics {
	display: grid;
	gap: 14px;
	grid-template-columns: repeat(auto-fit, minmax(155px, 1fr));
}

.gbcm-metrics article {
	background: #fff;
	border: 1px solid var(--gbcm-line);
	border-radius: 7px;
	padding: 17px;
}

.gbcm-metrics span {
	color: #526976;
	display: block;
	font-size: 0.84rem;
	font-weight: 700;
}

.gbcm-metrics strong {
	color: var(--gbcm-navy);
	display: block;
	font-size: 1.8rem;
	margin-top: 7px;
}

.gbcm-metrics .gbcm-warning strong {
	color: var(--gbcm-danger);
}

.gbcm-alert {
	border-radius: 5px;
	font-weight: 600;
	margin: 14px 0;
	padding: 12px 15px;
}

.gbcm-alert-success {
	background: #e4f4eb;
	color: #17683c;
}

.gbcm-alert-error {
	background: #f8e7e8;
	color: var(--gbcm-danger);
}

.gbcm-grid {
	display: grid;
	gap: 16px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	margin: 18px 0;
}

.gbcm-form > label {
	margin: 16px 0;
}

.gbcm-scan-label {
	font-size: 1rem !important;
}

.gbcm .gbcm-scan-input {
	border: 2px solid var(--gbcm-blue);
	font-size: 1.13rem;
	font-weight: 600;
}

.gbcm-multi {
	min-height: 128px !important;
}

.gbcm-assignment-picker {
	background: #f5f7fb;
	border: 1px solid #dfe6f0;
	border-radius: 8px;
	margin: 18px 0;
	padding: 15px;
}

.gbcm-assignment-picker h3 {
	margin: 0 0 6px;
}

.gbcm-picker-tools {
	display: grid;
	gap: 9px;
	grid-template-columns: minmax(0, 1fr) 180px;
	margin: 13px 0 10px;
}

.gbcm-picker-tools input,
.gbcm-picker-tools select {
	margin-top: 0;
}

.gbcm-pick-list {
	background: #fff;
	border: 1px solid #dfe6f0;
	border-radius: 6px;
	max-height: 262px;
	overflow-y: auto;
}

.gbcm-pick-list > p {
	color: #69748e;
	margin: 0;
	padding: 14px;
}

.gbcm-pick-row {
	align-items: center;
	border-bottom: 1px solid #edf0f5;
	cursor: pointer;
	display: grid !important;
	gap: 10px;
	grid-template-columns: 20px minmax(0, 1fr) auto;
	margin: 0 !important;
	padding: 10px 12px;
}

.gbcm-pick-row:last-child {
	border-bottom: 0;
}

.gbcm-pick-row:hover {
	background: #f4f7fc;
}

.gbcm-pick-row input {
	height: 16px;
	margin: 0;
	min-height: 0;
	width: 16px;
}

.gbcm-pick-row strong,
.gbcm-pick-row small {
	display: block;
}

.gbcm-pick-row strong {
	color: var(--gbcm-navy);
}

.gbcm-pick-row small,
.gbcm-pick-row time {
	color: #68768e;
	font-size: .8rem;
}

.gbcm-table-wrap {
	border: 1px solid var(--gbcm-line);
	border-radius: 7px;
	overflow-x: auto;
}

.gbcm-table {
	background: #fff;
	border-collapse: collapse;
	font-size: 0.9rem;
	min-width: 660px;
	width: 100%;
}

.gbcm-table th {
	background: var(--gbcm-bg);
	color: #465c66;
	font-size: 0.78rem;
	letter-spacing: .05em;
	text-align: left;
	text-transform: uppercase;
}

.gbcm-table td,
.gbcm-table th {
	border-bottom: 1px solid var(--gbcm-line);
	padding: 12px 13px;
	vertical-align: middle;
}

.gbcm-table td small {
	color: #617782;
	display: block;
	margin-top: 5px;
}

.gbcm-filter {
	align-items: end;
	background: var(--gbcm-bg);
	display: flex;
	gap: 12px;
	margin: 0 0 16px;
	padding: 16px;
}

.gbcm-filter label {
	flex: 1;
	margin: 0;
}

.gbcm-status-form {
	align-items: center;
	display: grid;
	gap: 7px;
	grid-template-columns: minmax(145px, 1fr) minmax(170px, 1fr) auto;
}

.gbcm-status-form input,
.gbcm-status-form select {
	margin: 0;
	min-height: 36px;
}

.gbcm-hint {
	color: #526976;
	font-size: 0.9rem;
	line-height: 1.55;
}

/* Logistics console styling derived from the supplied dashboard reference. */
.gbcm-console {
	background: #f3f5fa;
	border-radius: 12px;
	box-shadow: 0 10px 30px rgba(36, 47, 82, 0.09);
	max-width: 1280px;
	overflow: hidden;
}

.gbcm-console-layout {
	display: grid;
	grid-template-columns: 224px minmax(0, 1fr);
	min-height: 690px;
}

.gbcm-console-sidebar {
	background: #38487c;
	color: #d7dff5;
	padding: 22px 0;
}

.gbcm-console-brand {
	align-items: center;
	display: flex;
	gap: 11px;
	padding: 0 20px 27px;
}

.gbcm-console-brand > span {
	align-items: center;
	background: #fff;
	border-radius: 11px;
	color: #38487c;
	display: inline-flex;
	font-size: 1.35rem;
	font-weight: 800;
	height: 42px;
	justify-content: center;
	width: 42px;
}

.gbcm-console-brand strong,
.gbcm-console-brand small {
	display: block;
}

.gbcm-console-brand strong {
	color: #fff;
	font-size: 1rem;
}

.gbcm-console-brand small {
	color: #b4c1e6;
	font-size: .73rem;
}

.gbcm-console-user {
	align-items: center;
	background: rgba(26, 36, 69, .22);
	border-bottom: 1px solid rgba(255, 255, 255, .08);
	border-top: 1px solid rgba(255, 255, 255, .08);
	display: flex;
	gap: 10px;
	margin-bottom: 20px;
	padding: 15px 17px;
}

.gbcm-avatar {
	align-items: center;
	background: #ff8e63;
	border-radius: 50%;
	color: #fff;
	display: inline-flex;
	font-weight: 700;
	height: 38px;
	justify-content: center;
	width: 38px;
}

.gbcm-console-user small,
.gbcm-console-user strong {
	display: block;
}

.gbcm-console-user small {
	color: #b4c1e6;
	font-size: .72rem;
}

.gbcm-console-user strong {
	color: #fff;
	font-size: .87rem;
}

.gbcm-console-nav a {
	align-items: center;
	border-left: 3px solid transparent;
	color: #b8c5ea !important;
	display: flex;
	font-size: .88rem;
	gap: 12px;
	padding: 13px 16px;
	text-decoration: none !important;
}

.gbcm-console-nav a:hover,
.gbcm-console-nav a.is-active {
	background: #334271;
	border-color: #ff8e63;
	color: #fff !important;
}

.gbcm-console-nav a span {
	color: #93a4d2;
	font-size: .72rem;
	font-weight: 700;
}

.gbcm-console-workspace {
	min-width: 0;
}

.gbcm-console-content > .gbcm-staff {
	margin: 0;
	max-width: none;
	padding: 20px 24px 26px;
}

.gbcm-page-intro {
	color: #69748e;
	font-size: .95rem;
	margin: 0 0 18px;
}

.gbcm-console-header {
	align-items: center;
	background: #fff;
	box-shadow: 0 3px 12px rgba(25, 39, 73, .06);
	display: flex;
	justify-content: space-between;
	padding: 19px 25px;
}

.gbcm-console-header h2 {
	font-size: 1.45rem;
	margin: 0;
}

.gbcm-console-date {
	color: #64708b;
	text-align: right;
}

.gbcm-console-date small,
.gbcm-console-date strong {
	display: block;
}

.gbcm-console-date strong {
	color: #25304c;
}

.gbcm-console-metrics {
	display: grid;
	gap: 14px;
	grid-template-columns: repeat(3, minmax(170px, 1fr));
	padding: 22px 24px 5px;
}

.gbcm-stat {
	align-items: center;
	border-radius: 999px;
	color: #fff;
	display: flex;
	gap: 13px;
	min-height: 78px;
	padding: 10px 14px;
}

.gbcm-stat-icon {
	align-items: center;
	border: 1px solid rgba(255, 255, 255, .55);
	border-radius: 50%;
	box-shadow: 3px 3px 0 rgba(0, 0, 0, .14);
	display: inline-flex;
	font-size: .72rem;
	font-weight: 800;
	height: 54px;
	justify-content: center;
	width: 54px;
}

.gbcm-stat small,
.gbcm-stat strong {
	display: block;
}

.gbcm-stat small {
	font-size: .79rem;
	opacity: .92;
}

.gbcm-stat strong {
	font-size: 1.5rem;
	line-height: 1.1;
}

.gbcm-stat-blue { background: linear-gradient(120deg, #3573e5, #52a8ff); }
.gbcm-stat-purple { background: linear-gradient(120deg, #7767de, #a982ee); }
.gbcm-stat-green { background: linear-gradient(120deg, #13a45b, #40d45b); }
.gbcm-stat-orange { background: linear-gradient(120deg, #e07636, #ffab50); }
.gbcm-stat-indigo { background: linear-gradient(120deg, #38487c, #6176ba); }
.gbcm-stat-red { background: linear-gradient(120deg, #d43e53, #ff6c73); }

.gbcm-console-panels {
	display: grid;
	gap: 18px;
	grid-template-columns: minmax(0, 2fr) minmax(245px, 1fr);
	padding: 20px 24px 26px;
}

.gbcm-panel {
	background: #fff;
	border: 1px solid #e0e5ef;
	border-radius: 8px;
	padding: 0 17px 17px;
}

.gbcm-panel > header {
	align-items: center;
	border-bottom: 1px solid #e8edf4;
	display: flex;
	justify-content: space-between;
	margin: 0 -17px 15px;
	padding: 15px 17px;
}

.gbcm-panel h3 {
	font-size: 1rem;
	margin: 0;
}

.gbcm-panel header a {
	color: #3573e5;
	font-size: .84rem;
	font-weight: 700;
	text-decoration: none;
}

.gbcm-actions > a {
	border: 1px solid #edf0f6;
	border-radius: 7px;
	display: block;
	margin-bottom: 10px;
	padding: 13px;
	text-decoration: none !important;
}

.gbcm-actions > a:hover {
	background: #f5f7fc;
	border-color: #cfd9ef;
}

.gbcm-actions strong {
	color: #38487c;
	display: block;
	font-size: .92rem;
}

.gbcm-actions span {
	color: #69748e;
	display: block;
	font-size: .8rem;
	margin-top: 4px;
}

.gbcm-two-panels {
	display: grid;
	gap: 18px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.gbcm-choice-cards {
	display: grid;
	gap: 13px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	margin-bottom: 18px;
}

.gbcm-choice {
	background: #fff;
	border: 1px solid #dce3ed;
	border-radius: 8px;
	display: block;
	padding: 15px 17px;
	text-decoration: none !important;
}

.gbcm-choice.is-selected {
	background: #f3f7ff;
	border-color: #3573e5;
}

.gbcm-choice strong {
	color: #38487c;
	display: block;
	margin-bottom: 5px;
}

.gbcm-choice span {
	color: #69748e;
	display: block;
	font-size: .84rem;
}

.gbcm-choice:hover {
	border-color: #3573e5;
}

.gbcm-two-panels .gbcm-card {
	margin-top: 0;
}

.gbcm-status-form-compact {
	grid-template-columns: minmax(130px, 1fr) auto;
}

.gbcm-edit-details {
	min-width: 235px;
}

.gbcm-edit-details summary {
	color: var(--gbcm-blue);
	cursor: pointer;
	font-weight: 700;
}

.gbcm-edit-form {
	background: #f5f7fb;
	border: 1px solid #e2e7f0;
	border-radius: 7px;
	margin-top: 9px;
	padding: 11px;
}

.gbcm-edit-form label {
	font-size: .78rem;
	margin: 0 0 8px;
}

.gbcm-edit-form input,
.gbcm-edit-form textarea {
	font-size: .83rem;
	min-height: 35px;
	padding: 6px 8px;
}

@media (max-width: 680px) {
	.gbcm-inline,
	.gbcm-filter,
	.gbcm-header {
		display: block;
	}

	.gbcm-inline .gbcm-button,
	.gbcm-filter .gbcm-button {
		margin-top: 10px;
		width: 100%;
	}

	.gbcm-grid {
		grid-template-columns: 1fr;
	}

	.gbcm-picker-tools {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 960px) {
	.gbcm-console-layout,
	.gbcm-console-panels,
	.gbcm-two-panels,
	.gbcm-choice-cards {
		display: block;
	}

	.gbcm-choice {
		margin-bottom: 12px;
	}

	.gbcm-console-sidebar {
		padding-bottom: 9px;
	}

	.gbcm-console-brand,
	.gbcm-console-user {
		display: none;
	}

	.gbcm-console-nav {
		display: flex;
		overflow-x: auto;
		padding: 0 7px;
	}

	.gbcm-console-nav a {
		border-bottom: 3px solid transparent;
		border-left: 0;
		white-space: nowrap;
	}

	.gbcm-console-nav a.is-active {
		border-bottom-color: #ff8e63;
	}

	.gbcm-console-metrics {
		grid-template-columns: repeat(2, minmax(150px, 1fr));
	}

	.gbcm-panel {
		margin-bottom: 16px;
	}
}

@media (max-width: 560px) {
	.gbcm-console-metrics {
		grid-template-columns: 1fr;
		padding-left: 14px;
		padding-right: 14px;
	}

	.gbcm-console-panels,
	.gbcm-console-header,
	.gbcm-console-content > .gbcm-staff {
		padding-left: 14px;
		padding-right: 14px;
	}
}
