﻿/* Hidden checkbox toggle */
#popup-toggle {
	display: none;
}

/* Button to open popup */
.open-popup-btn {
	background: #007BFF;
	color: white;
	padding: 10px 20px;
	border-radius: 5px;
	cursor: pointer;
	display: inline-block;
	margin: 20px;
}

/* Popup overlay (fixed on top of everything) */
.popup-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background-color: rgba(0, 0, 0, 0.6);
	display: none;
	justify-content: center;
	align-items: center;
	z-index: 9999;
}

/* Popup box */
.popup-box {
	background: white;
	padding: 30px;
	border-radius: 10px;
	width: 90%;
	max-width: 400px;
	position: relative;
	transform: scale(0.8);
	opacity: 0;
	transition: all 0.3s ease;
}

/* Show overlay when checkbox is checked */
#popup-toggle:checked ~ .popup-overlay {
	display: flex;
}

	/* Animate popup when checkbox is checked */
	#popup-toggle:checked ~ .popup-overlay .popup-box {
		transform: scale(1);
		opacity: 1;
	}

/* Close button */
.close-popup-btn {
	position: absolute;
	top: 10px;
	right: 15px;
	font-size: 20px;
	color: #555;
	text-decoration: none;
	cursor: pointer;
}



.align-labels {
	display: flex;
	justify-content: space-between;
	width: 100%;
}

