/* ---------- Driver Schedule ---------- */

.ds_toolbar {
	display: flex;
	align-items: center;
	gap: 12px;
	flex-wrap: wrap;
	margin-bottom: 24px;
}

.ds_filter_select {
	padding: 12px 16px;
	border-radius: 999px;
	border: 1px solid var(--fourth);
	font-family: var(--font-body);
	font-size: 14px;
	background: #fff;
	color: var(--link-active);
}

.ds_count {
	font-size: 13px;
	color: var(--secondary);
	white-space: nowrap;
}

.ds_loading, .ds_empty {
	color: var(--secondary);
	font-size: 14px;
	font-style: italic;
	padding: 20px 0;
}

.ds_schedule {
	display: flex;
	flex-direction: column;
	gap: 28px;
}

.ds_day_heading {
	font-family: var(--font-display);
	font-size: 16px;
	color: var(--link-active);
	margin: 0 0 10px;
	padding-bottom: 6px;
	border-bottom: 1px solid var(--fourth);
}

.ds_stop {
	display: grid;
	grid-template-columns: 90px 1fr auto;
	align-items: center;
	gap: 14px;
	background: #fff;
	border-radius: 10px;
	padding: 14px 18px;
	border-left: 4px solid var(--fourth);
	margin-bottom: 8px;
}

.ds_stop_time {
	font-weight: 700;
	font-size: 13px;
	color: var(--link-active);
	white-space: nowrap;
}

.ds_stop_main {
	display: flex;
	align-items: center;
	gap: 10px;
	min-width: 0;
}

.ds_stop_main strong {
	font-size: 14px;
	color: var(--link-active);
}

.ds_status {
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	padding: 3px 9px;
	border-radius: 999px;
	background: var(--fourth);
	color: var(--link-active);
	white-space: nowrap;
}

.ds_status_confirmed {
	background: #d7ecd9;
	color: #2f6b34;
}

.ds_status_pending {
	background: #f7e6c4;
	color: #8a6216;
}

.ds_stop_location a {
	font-size: 13px;
	color: var(--link);
	text-decoration: none;
	white-space: nowrap;
}

.ds_stop_location a:hover {
	text-decoration: underline;
}

.ds_no_location {
	font-size: 12px;
	color: var(--secondary);
	font-style: italic;
}

@media (max-width: 600px) {
	.ds_stop {
		grid-template-columns: 1fr;
		gap: 6px;
	}
	.ds_stop_time {
		font-size: 12px;
		color: var(--secondary);
	}
}
