.dropdown {
	position: relative;
}

.dropdown button {
	width: 32px;
	height: 32px;
	background-color: #f2f5f7;
	border: none;
	border-radius: 5px;
	cursor: pointer;

	display: flex;
	justify-content: center;
	align-items: center;
}

.dropdown button svg {
	width: 14px;
	height: 14px;
	pointer-events: none;
}

.dropdown .dropdown-content {
	display: none;
	position: absolute;
	background-color: #353535;
	min-width: 200px;
	border-radius: 5px;
	box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
	padding: 15px;
	z-index: 1;

	color: #fff;

	/* display: flex; */
	flex-direction: column;
	gap: 5px;
}

.dropdown.open .dropdown-content {
	display: flex;
}

.dropdown .dropdown-content a {
	padding: 5px 10px;
	text-decoration: none;
	display: block;
	border-radius: 3px;
}

.dropdown .dropdown-content a:hover {
	background-color: #555;
}
