﻿.segmented-toggle {
	position: relative;
	width: 100%;
	height: 42px;
	background: #e6e6e6;
	border-radius: 24px;
	display: flex;
	padding: 4px;
	box-sizing: border-box;
	font-family: Arial, sans-serif;
	overflow: hidden;
}

	.segmented-toggle button {
		flex: 1;
		border: none;
		background: none;
		cursor: pointer;
		font-weight: bold;
		font-size: 14px;
		color: #555;
		z-index: 1;
		white-space: nowrap;
	}

		.segmented-toggle button.active {
			color: #fff;
		}

	.segmented-toggle .slider {
		position: absolute;
		top: 4px;
		left: 4px;
		width: calc(50% - 4px);
		height: calc(100% - 8px);
		background: #7fbd52;
		border-radius: 20px;
		transition: left 0.25s ease;
	}

.wa-toggle-wrapper {
	width: 100%;
	max-width: 800px; /* desktop size */
	margin: 0 auto;
	padding: 0 12px; /* mobile breathing room */
	box-sizing: border-box;
}

.toggle-status {
	margin-top: 12px;
	font-size: 14px;
	font-weight: 600;
	color: #444;
	line-height: 1.5;
}
