.hsc-termine-liste {
	font-family: inherit;
}

/* Monatsfilter */
.hsc-termine-filter {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 16px;
	flex-wrap: wrap;
}

.hsc-termine-filter label {
	font-weight: 600;
}

.hsc-termine-monat-select {
	padding: 6px 10px;
	border: 1px solid #ccc;
	border-radius: 3px;
	font-size: 1em;
	background: #fff;
}

.hsc-termine-filter-button {
	padding: 6px 16px;
	border: 1px solid #111;
	border-radius: 3px;
	background: #111;
	color: #fff;
	cursor: pointer;
	font-size: 0.95em;
}

.hsc-termine-filter-button:hover {
	background: #c8a951;
	border-color: #c8a951;
	color: #111;
}

/* Tabelle */
.hsc-termine-tabelle {
	width: 100%;
	border-collapse: collapse;
	table-layout: fixed;
	margin-bottom: 8px;
}

.hsc-termine-tabelle thead th {
	text-align: left;
	font-size: 0.78em;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: #fff;
	background: #111;
	padding: 10px 8px;
}

/* Spaltenbreiten: Begegnung (Mittelspalte) am breitesten */
.hsc-termine-col-datum      { width: 22%; }
.hsc-termine-col-mannschaft { width: 14%; }
.hsc-termine-col-begegnung  { width: 36%; }
.hsc-termine-col-ort        { width: 20%; }
.hsc-termine-col-typ        { width: 8%; text-align: center; }

.hsc-termine-zeile td {
	padding: 10px 8px;
	border-bottom: 1px solid #e5e5e5;
	vertical-align: top;
}

/* Zebra-Streifen */
.hsc-termine-gerade {
	background: #ffffff;
}

.hsc-termine-ungerade {
	background: #f6f4ee;
}

.hsc-termine-badge {
	display: inline-block;
	font-size: 0.72em;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.03em;
	padding: 2px 8px;
	border-radius: 3px;
	margin-right: 6px;
	color: #fff;
}

.hsc-termine-badge-heim {
	background: #2e5c3a;
}

.hsc-termine-badge-auswaerts {
	background: #8a2b22;
}

.hsc-termine-hinweis {
	font-size: 0.85em;
	color: #666;
}

.hsc-termine-col-typ {
	text-align: center;
}

.hsc-termine-typ-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.hsc-termine-typ-spiel {
	color: #c8a951;
}

.hsc-termine-typ-termin {
	color: #111;
}

.hsc-termine-leer {
	font-style: italic;
	color: #666;
}

@media (max-width: 700px) {
	.hsc-termine-tabelle thead {
		display: none;
	}
	.hsc-termine-tabelle,
	.hsc-termine-tabelle tbody,
	.hsc-termine-zeile {
		display: block;
		width: 100% !important;
	}
	.hsc-termine-zeile {
		padding: 10px 0;
		border-bottom: 2px solid #e5e5e5;
	}
	.hsc-termine-zeile td {
		display: flex;
		width: 100% !important;
		border: none;
		padding: 3px 8px;
		gap: 6px;
	}
	.hsc-termine-zeile td[data-label]::before {
		content: attr(data-label) ":";
		font-weight: 700;
		flex: 0 0 110px;
		color: #555;
	}
	.hsc-termine-col-typ {
		justify-content: flex-start;
		text-align: left;
	}
	.hsc-termine-col-ort::before {
		content: "Ort: 📍";
	}
}
