.cb-pricing-container {
	font-family: inherit;
	background: #fff;
	padding: 20px;
	border-radius: 8px;
	box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}
.cb-step {
	margin-bottom: 25px;
}
.cb-step-title {
	font-size: 1.2rem;
	margin-bottom: 15px;
	color: #333;
}
.cb-options {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}
.cb-btn {
	background: #f5f5f5;
	border: 2px solid #ddd;
	padding: 10px 15px;
	border-radius: 6px;
	cursor: pointer;
	font-weight: 500;
	transition: all 0.2s ease;
	color: #333;
}
.cb-btn:hover {
	background: #eaeaea;
}
.cb-btn.active {
	background: #006400; /* Dark Green */
	border-color: #006400; /* Dark Green */
	color: #fff;
}
.cb-total-price {
	font-size: 2rem;
	font-weight: bold;
	color: #006400; /* Dark Green */
}