.floating-panel {
	position: fixed;
	top: 50%;
	transform: translateY(-50%);
	right: 0;
	z-index: 9999;
	display: flex;
	flex-direction: column;
	align-items: center;
	transition: transform 0.3s ease;
}

.floating-panel.hidden {
	transform: translateX(100%);
}

.panel-links {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 200px;
	gap: 10px;
}

.panel-links a {
	width: 100%;
	display: flex;
	box-shadow: 1px 4px 7px #0006;
	border-radius: 20px 0 0 20px;
	margin: 0 auto;
	text-align: center;
	justify-content: center;
}

a.panel-link:nth-child(1) {
	background: #71d64a;
	color:#2b2b2b;

}
a.panel-link:nth-child(2) {
	background: #FDBC2C;
}

.panel-link {
	background: #fff;
	color: #000;
	text-decoration: none;
	margin: 5px 0;
	padding: 10px;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	font-size: 14px;
	line-height: 17px;
}

.panel-link img {
	width: 24px;
	height: 24px;
	margin-left: 10px;
	/* Move image to the right */
}

.panel-toggle {
	background: #222;
	color: #fff;
	padding: 8px;
	cursor: pointer;
	font-size: 16px;
}

.panel-open-btn {
	position: fixed;
	top: 50%;
	transform: translateY(-150%);
	right: 0;
	z-index: 9998;
	background: #222;
	color: #fff;
	padding: 0 14px;
	cursor: pointer;
	border-radius: 25px 0px 0px 25px;
	display: none;
}

.floating-panel.hidden+.panel-open-btn {
	display: block;
}

.floating-panel.hidden {
	display: none;
}

/* Close button - positioned top-left, absolute */
.close-btn {
	border-radius: 50px;
	border: 1px solid #1c1659;
	padding: 0px 13px;
	color: #1c1659;
	position: absolute;
	top: 5px;
	right: 210px;
	transition: all 0.3s ease;
	cursor: pointer;
}