.price-plan-wrapper {
	position: relative;
	/* For positioning arrows */
	overflow: hidden;
	/* Hide overflow */
	padding: 20px 50px;
	/* Space for arrows */
}

.price-plan-grid {
	display: flex;
	flex-wrap: nowrap;
	gap: 7px;
	overflow-x: auto;
	scroll-behavior: auto;
	padding: 10px 0;
	scrollbar-width: none;
	/* Hide scrollbar Firefox */
}

.price-plan-grid::-webkit-scrollbar {
	display: none;
	/* Hide scrollbar Chrome/Safari */
}

.price-plan-grid .plan {
	flex: 0 0 300px;
	/* Fixed width per card - adjust to match your design */
	min-width: 300px;
}

/* Arrow buttons */
.scroll-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: #00145A;
	color: white;
	border: none;
	width: 40px;
	height: 40px;
	font-size: 26px;
	cursor: pointer;
	z-index: 10;
	border-radius: 29px;
	opacity: 0.8;
	transition: opacity 0.3s;
}

.scroll-arrow:hover {
	opacity: 1;
	background: #17DEFD;
	color: #00145A;
}

.left-arrow {
	left: 0px;
}

.right-arrow {
	right: 0px;
}