body
{
	font-family: Arial, sans-serif;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100vh;
	margin: 0;
	background-color: #f0f0f0;
}

.main-container
{
	position: absolute;
	top: 10px;
	left: 10px;
}

.slider-container
{
	position: relative;
	width: 300px;
	height: 50px;
	background-color: #ddd;
	border-radius: 25px;
	overflow: hidden;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.slider-track
{
	position: absolute;
	top: 0;
	left: 0;
	width: 0;
	height: 100%;
	background-color: #4caf50;
	z-index: 1;
	transition: width 0.3s ease;
}

.slider-button
{
	position: absolute;
	top: 0;
	left: 0;
	width: 50px;
	height: 50px;
	background-color: #4caf50;
	border-radius: 50%;
	z-index: 2;
	cursor: grab;
	transition: box-shadow 0.3s ease;
}

.slider-button:active
{
	cursor: grabbing;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.unlock-message
{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-size: 18px;
	color: #666;
	z-index: 0;
	pointer-events: none;
}