.radio-switch-group {
	display: flex;
	flex-wrap: wrap;
	background-color: #e2e8f0 !important;
	border-radius: 8px;
	padding: 4px;
	width: fit-content;
	max-width: 100%;
}

.radio-switch-option {
	flex: 0 0 auto;
	text-align: center;
	cursor: pointer;
	position: relative;
	margin-bottom: 0;
}

.radio-switch-option input {
	display: none;
}

.radio-switch-label-text {
	display: block;
	padding: 4px 8px;
	font-size: 13px;
	font-weight: 600;
	color: rgba(113, 128, 150, 1);
	border-radius: 6px;
	min-width: 50px;
	margin-left: 2px;
	margin-right: 2px;
	transition: all 0.25s ease;

	transform: scale(1);
	white-space: nowrap;
}

.radio-switch-option input:checked+.radio-switch-label-text {
	background-color: #ffffff;
	color: #1a202c;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.18);
	border-radius: 8px;
	transform: scale(1.05);
}

.radio-switch-option:hover .label-text {
	background: #edf2f7;
}

@media (max-width: 500px) {
	.radio-switch-label-text {
		font-size: 11px;
		padding: 5px 8px;
	}
}