.slider-container {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	height: 90vh;
	z-index: 1000;
	transform: translateY(calc(100%));
	transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	background: white;
	border-radius: 24px 24px 0 0;
	box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.15);
}

.slider-container.open {
	transform: translateY(0);
}

.slider-header {
	height: 40px;
	background: #4f46e5;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	border-radius: 24px 24px 0 0;
}

.arrow-container {
	position: absolute;
	top: -30px;
	left: 50%;
	transform: translateX(-50%);
	width: 150px;
	color: white;
	height: 40px;
	background: #4f46e5;
	border-radius: 50px 50px 0px 0px;
	display: flex;
	cursor: pointer;
	align-items: center;
	justify-content: center;
	z-index: 1001;
	transition: all 0.3s ease;
}

.arrow-container svg{
	width: 30px;
	height: 30px;
}


.slider-container.open .toggle-btn {
	transform: rotate(180deg);
}

.slider-title {
	color: white;
	font-weight: 600;
	font-size: 18px;
}

.slider-content {
	display: flex;
	align-items: center;
	justify-content: center;
	height: calc(100% - 70px);
	padding: 2px;
	overflow-y: auto;
	color: #333;
}
