/* ═══════════════════════════════════════════════
   SAR Beratungs-Auswahl-Popup (Header-Buchungs-Button)
   Palette: Blau #1a3a5c, Orange #e87722
   ═══════════════════════════════════════════════ */

.sar-bc-overlay {
	position: fixed;
	inset: 0;
	z-index: 100000;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
	background: rgba( 26, 58, 92, 0.55 );
}

.sar-bc-modal {
	position: relative;
	width: 100%;
	max-width: 460px;
	background: #fff;
	border-radius: 8px;
	padding: 28px 28px 24px;
	box-shadow: 0 20px 60px rgba( 0, 0, 0, 0.3 );
	text-align: center;
}

.sar-bc-close {
	position: absolute;
	top: 8px;
	right: 10px;
	border: 0;
	background: none;
	font-size: 26px;
	line-height: 1;
	color: #888;
	cursor: pointer;
	padding: 4px 8px;
}
.sar-bc-close:hover { color: #1a3a5c; }

.sar-bc-title {
	margin: 0 0 8px;
	color: #1a3a5c;
	font-size: 1.25em;
}

.sar-bc-text {
	margin: 0 0 20px;
	color: #555;
}

.sar-bc-actions {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.sar-bc-btn {
	display: inline-block;
	padding: 12px 20px;
	border: 0;
	border-radius: 4px;
	font: inherit;
	font-weight: 600;
	text-align: center;
	text-decoration: none;
	cursor: pointer;
	transition: background-color 0.15s ease;
}

.sar-bc-btn--specific {
	background: #e87722;
	color: #fff;
}
.sar-bc-btn--specific:hover { background: #d4561e; }

.sar-bc-btn--general {
	background: #1a3a5c;
	color: #fff;
	border: 1px solid #1a3a5c;
}
.sar-bc-btn--general:hover {
	background: #fff;
	color: #1a3a5c;
}

@media ( min-width: 480px ) {
	.sar-bc-actions {
		flex-direction: row-reverse;
		justify-content: center;
	}
	.sar-bc-btn { flex: 1; }
}
