/* Birth Charts Suite - opgeslagen profielen */
.bcs-profile-bar {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	align-items: center;
	margin: 0 0 14px;
	padding: 12px;
	border: 1px solid var(--bcs-border, #e8dfd8);
	background: #fff;
}
.bcs-profile-label {
	flex: 1 0 100%;
	font-size: 0.9em;
	font-weight: 600;
}
.bcs-profile-select {
	flex: 1 1 220px;
	max-width: 100%;
	padding: 8px 10px;
}
.bcs-profile-delete {
	min-height: 44px;
	background: #fff;
	border: 1px solid #8f2018;
	padding: 8px 12px;
	color: #7f1d1d;
	cursor: pointer;
	font: inherit;
	font-size: 0.88em;
}
.bcs-profile-delete:hover,
.bcs-profile-delete:focus-visible {
	background: #fff4f2;
	outline: 3px solid var(--bcs-accent, #cd9a99);
	outline-offset: 2px;
}
.bcs-consent {
	margin: 10px 0;
	font-size: 0.9em;
	line-height: 1.55;
}
.bcs-consent-hint {
	opacity: 0.7;
	font-size: 0.9em;
}

/* Mobiel: tikgrootte en geen zoom-trigger */
.bcs-profile-select { font-size: 16px; min-height: 44px; }
.bcs-consent-box { width: 20px; height: 20px; }

.bcs-profile-toast {
	position: fixed;
	right: 18px;
	bottom: 18px;
	z-index: 99999;
	display: flex;
	align-items: center;
	gap: 12px;
	max-width: min(420px, calc(100vw - 36px));
	box-sizing: border-box;
	border: 1px solid #1a1a1a;
	background: #1a1a1a;
	color: #fff;
	padding: 12px 14px;
	box-shadow: 0 8px 24px rgba(26, 26, 26, .2);
}

.bcs-profile-toast-action {
	min-height: 36px;
	border: 1px solid #fff;
	background: transparent;
	color: #fff;
	cursor: pointer;
	font: inherit;
	font-weight: 700;
	padding: 6px 10px;
	text-decoration: underline;
	text-underline-offset: .18em;
}

.bcs-profile-toast-action:focus-visible {
	outline: 3px solid var(--bcs-accent, #cd9a99);
	outline-offset: 2px;
}

@media (max-width: 480px) {
	.bcs-profile-delete {
		flex: 1 0 100%;
	}

	.bcs-profile-toast {
		right: 12px;
		bottom: 12px;
		max-width: calc(100vw - 24px);
	}
}
