.yes-no-segmented-control-5c71c0e0 {
	display: inline-flex;
	border: 1px solid #ccc;
	border-radius: 4px;
	overflow: hidden;
	background: #fff;
}

.yes-no-segmented-control-5c71c0e0 .yes-no-label {
	margin: 0;
	padding: 0;
	display: block;
	cursor: pointer;
	flex: 1;
}

.yes-no-segmented-control-5c71c0e0 .yes-no-label:not(:last-child) {
	border-right: 1px solid #ccc;
}

/* Hide native radio button visually but keep accessible */
.yes-no-segmented-control-5c71c0e0 .yes-no-radio {
	position: absolute;
	opacity: 0;
	width: 0;
	height: 0;
	margin: 0;
}

.yes-no-segmented-control-5c71c0e0 .yes-no-text {
	display: block;
	padding: 8px 16px;
	text-align: center;
	font-weight: 600;
	transition: background 0.3s, color 0.3s;
}

/* Selected state styling */
.yes-no-segmented-control-5c71c0e0 .yes-no-radio:checked + .yes-no-text {
	color: #fff;
}

.yes-no-segmented-control-5c71c0e0 .yes-no-label:first-child .yes-no-radio:checked + .yes-no-text {
	background: #2563eb; /* Blue for Yes */
}

.yes-no-segmented-control-5c71c0e0 .yes-no-label:last-child .yes-no-radio:checked + .yes-no-text {
	background: #dc2626; /* Red for No */
}
