.shift-bar {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	border: 1px solid var(--border);
	border-radius: 14px;
	background: var(--bg-1);
	overflow: hidden;
	margin-bottom: 16px;
}
.shift-stat {
	padding: 16px 18px;
	border-right: 1px solid var(--border);
	display: flex;
	flex-direction: column;
	gap: 4px;
}
.shift-stat:last-child {
	border-right: none;
}
.shift-stat .val {
	font-size: 22px;
	font-weight: 500;
	letter-spacing: -0.02em;
	font-variant-numeric: tabular-nums;
	color: var(--fg);
	line-height: 1;
}
.shift-stat .val .cur {
	font-family: "Onest", sans-serif;
	font-size: 14px;
	color: var(--fg-dim);
	margin-left: 2px;
}
.shift-stat .label {
	font-size: 10.5px;
	color: var(--fg-mute);
	text-transform: uppercase;
	letter-spacing: 0.08em;
}
.shift-stat.accent .val {
	color: var(--accent);
}

.shift-close {
	padding: 14px 22px;
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 13px;
	font-weight: 500;
	color: var(--fg);
	background: transparent;
	cursor: pointer;
	border: none;
	border-left: 1px solid var(--border);
	white-space: nowrap;
}
.shift-close:hover {
	background: var(--bg-2);
}
.shift-close .dot-end {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--accent);
	box-shadow: 0 0 0 3px rgba(142, 93, 216, 0.18);
}
