/* Dorfstüble Öffnungszeiten – im Stil der Website dorfstueble.com */
.oez-box {
	--oez-dark: #2b2b26;
	--oez-green: #3a5a40;
	--oez-muted: #7a7267;
	--oez-line: #e4ded3;
	--oez-bg-soft: #f7f4ef;
	--oez-amber: #9c6b1f;
	max-width: 460px;
	font-size: 16px;
	line-height: 1.6;
	color: var(--oez-dark);
}

.oez-titel {
	font-size: 1.35em;
	margin: 0 0 14px;
	font-weight: 600;
	letter-spacing: 0.01em;
}

/* Live-Status – dezent wie das "●Heute geschlossen" der Website */
.oez-status {
	display: flex;
	align-items: center;
	gap: 8px;
	font-weight: 600;
	font-size: 1.02em;
	margin-bottom: 16px;
	letter-spacing: 0.01em;
}
.oez-status .oez-dot {
	width: 9px;
	height: 9px;
	border-radius: 50%;
	flex: 0 0 auto;
}
.oez-status.is-open { color: #2f7a3f; }
.oez-status.is-open .oez-dot { background: #359147; }
.oez-status.is-soon { color: var(--oez-amber); }
.oez-status.is-soon .oez-dot { background: var(--oez-amber); }
.oez-status.is-closed { color: #a4443c; }
.oez-status.is-closed .oez-dot { background: #b64b42; }

.oez-heute-hinweis,
.oez-heute-kommentar {
	margin: 0 0 14px;
	padding: 9px 13px;
	background: var(--oez-bg-soft);
	border-left: 3px solid var(--oez-green);
	border-radius: 4px;
	font-size: 0.95em;
	color: #4a4a42;
}
.oez-heute-kommentar { border-left-color: var(--oez-amber); }

/* Wochenübersicht – schlichte Tabelle wie auf der Website */
.oez-tabelle {
	width: 100%;
	border-collapse: collapse;
	margin: 0;
}
.oez-tabelle th,
.oez-tabelle td {
	padding: 9px 2px;
	border-bottom: 1px solid var(--oez-line);
	text-align: left;
	font-weight: 400;
	font-size: 1em;
}
.oez-tabelle th {
	color: var(--oez-dark);
	width: 42%;
}
.oez-tabelle td {
	text-align: right;
	color: #4a4a42;
	font-variant-numeric: tabular-nums;
}
.oez-tabelle tr:last-child th,
.oez-tabelle tr:last-child td { border-bottom: none; }
.oez-tabelle .oez-heute th,
.oez-tabelle .oez-heute td {
	font-weight: 700;
	color: var(--oez-green);
}
.oez-tabelle .oez-zu { color: var(--oez-muted); }

/* Hinweisbalken für Events / Sonderzeiten */
.oez-banner {
	margin-top: 16px;
	padding: 13px 15px;
	background: var(--oez-bg-soft);
	border: 1px solid var(--oez-line);
	border-left: 3px solid var(--oez-amber);
	border-radius: 4px;
}
.oez-banner-kopf {
	font-weight: 700;
	color: var(--oez-dark);
	display: flex;
	align-items: center;
	gap: 8px;
	flex-wrap: wrap;
}
.oez-badge {
	background: var(--oez-amber);
	color: #fff;
	font-size: 0.68em;
	font-weight: 700;
	padding: 2px 9px;
	border-radius: 999px;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}
.oez-banner-datum {
	font-size: 0.9em;
	color: var(--oez-muted);
	margin-top: 3px;
}
.oez-banner-text {
	margin-top: 7px;
	font-size: 0.96em;
	color: #4a4a42;
}
