/* Kolorystyka: granat #000066, pomarańcz #ff6600 */
.vbs-line {
	border: 1px solid #e5e7eb;
	border-radius: 12px;
	overflow: hidden;
	background: #fff;
}
.vbs-line__header {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 12px 16px;
	border-bottom: 1px solid #e5e7eb;
	background: #f9fafb;
}
.vbs-badge {
	font-weight: 700;
	font-size: 18px;
	background: #000066;
	color: #fff;
	padding: 4px 10px;
	border-radius: 10px;
}
.vbs-line__title {
	flex: 1;
}
.vbs-line__name {
	font-weight: 700;
}
.vbs-line__dir {
	font-size: 12px;
	color: #6b7280;
}
.vbs-line__switch {
	display: flex;
	gap: 8px;
}
.vbs-switch {
	border: 1px solid #000066;
	background: #fff;
	border-radius: 8px;
	padding: 6px 10px;
	cursor: pointer;
	color: #000066;
}
.vbs-switch.active {
	background: #000066;
	color: #fff;
	border-color: #000066;
}
.vbs-columns {
	display: grid;
	grid-template-columns: 1fr;
	gap: 0;
}
@media (min-width: 900px) {
	.vbs-columns {
		grid-template-columns: 1fr 1fr;
	}
}
.vbs-stops {
	padding: 8px 0 8px 8px;
	border-right: 1px solid #e5e7eb;
}
.vbs-stops__list {
	list-style: none;
	margin: 0;
	padding: 0;
}
.vbs-stop {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	padding: 10px 14px;
	border-bottom: 1px dashed #eee;
	cursor: pointer;
}
.vbs-stop:hover {
	background: #f3f4f6;
}
.vbs-stop.active {
	background: #e8ecff;
}
.vbs-dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: #ff6600;
	display: inline-block;
	margin-right: 8px;
}
.vbs-xchg {
	opacity: 0.4;
}
.vbs-times {
	padding: 12px 16px;
}
.vbs-clock {
	font-size: 24px;
	font-weight: 700;
	text-align: right;
	margin-bottom: 8px;
	color: #000066;
}
.vbs-tabs {
	display: flex;
	gap: 8px;
	margin-bottom: 12px;
}
.vbs-tab {
	border: 1px solid #000066;
	background: #fff;
	padding: 6px 10px;
	border-radius: 8px;
	cursor: pointer;
	color: #000066;
}
.vbs-tab.active {
	background: #000066;
	color: #fff;
}
.vbs-times__list {
	min-height: 280px;
	border: 1px dashed #e5e7eb;
	border-radius: 8px;
	padding: 12px;
}
.vbs-chip {
	display: inline-block;
	padding: 6px 8px;
	border-radius: 6px;
	border: 1px solid #ff6600;
	margin: 4px;
	color: #000;
}
.hidden {
	display: none;
}

/* Tabela godzin/minut */
.vbs-tt {
	padding: 8px;
	border: 1px dashed #e5e7eb;
	border-radius: 8px;
	background: #fff;
}
.vbs-tt-row {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	padding: 4px 6px;
	border-bottom: 1px dashed #f0f0f0;
}
.vbs-tt-row:last-child {
	border-bottom: none;
}
.vbs-tt-hour {
	width: 36px;
	min-width: 36px;
	text-align: right;
	font-weight: 700;
	color: #000066;
	padding-top: 3px;
}
.vbs-tt-mins {
	flex: 1;
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}
.vbs-min {
	display: inline-block;
	padding: 4px 8px;
	border: 1px solid #ff6600;
	border-radius: 8px;
	line-height: 1.2;
}
.vbs-min--empty {
	border-color: transparent;
	opacity: 0.35;
}
.vbs-stop--transfer {
	background: #f6f7f9;
}
.vbs-stop--transfer:hover {
	background: #eef0f3;
}
