.flyout-container {
	position: relative;
}

.flyout-toggle {
	padding: 10px 20px;
	background-color: #007bff;
	color: white;
	border: none;
	cursor: pointer;
	border-radius: 5px;
}

.flyout-content {
	position: absolute;
	top: 100%;
	/* Below the button */
	left: 0;
	background-color: #f1f1f1;
	border: 1px solid #ccc;
	padding: 10px;
	width: 200px;
	display: none;
	/* Initially hidden */
	box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
	z-index: 1000;
}

.flyout-content.active {
	display: block;
	/* Show the flyout */
}