/**
 * Paired Post Control Block Styles
 *
 * Clean, simple button group for toggling paired content visibility.
 */

/* Container */
.paired-control {
	margin: 1rem 0;
}

/* Button group */
.paired-control-buttons {
	display: inline-flex;
	gap: 0;
	border-radius: 4px;
	overflow: hidden;
	border: 1px solid currentColor;
	opacity: 0.7;
}

.paired-control-buttons:hover {
	opacity: 1;
}

/* Individual buttons */
.paired-control-button {
	display: inline-block;
	padding: 0.5rem 1rem;
	background-color: transparent;
	color: inherit;
	text-decoration: none;
	border: none;
	border-right: 1px solid currentColor;
	font-size: 0.875em;
	transition: background-color 0.2s ease;
	cursor: pointer;
}

.paired-control-button:last-child {
	border-right: none;
}

.paired-control-button:hover {
	background-color: rgba(0, 0, 0, 0.05);
}

.paired-control-button.active {
	background-color: rgba(0, 0, 0, 0.1);
	font-weight: 600;
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
	.paired-control-button:hover {
		background-color: rgba(255, 255, 255, 0.05);
	}

	.paired-control-button.active {
		background-color: rgba(255, 255, 255, 0.1);
	}
}
