﻿.compare-panel {
	padding-bottom: 30px;
	position: fixed;
	top: 100px;
	right: 0;
	width: 30%;
	border: 1px solid #ccc;
	box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease;
	z-index: 100;
	background-color: white;
	transform: translateX(0);
}

.compare-panel.collapsed {
	transform: translateX(95%);
}

.compare-toggle-btn {
	position: fixed;
	top: 25%;
	left: -20px;
	z-index: 1100;
	background: #218fcf;
	border: 1px solid #ccc;
	cursor: pointer;
	font-size: 20px;
	color: white;
	padding: 10px 5px;
}