/* .options-button {{{ */

.options-button svg {
	fill: rgba(0, 0, 0, 0.54);
}

.options-button:hover {
	background-color: rgba(0, 0, 0, 0.04);
}

.options-button:focus {
	background-color: rgba(0, 0, 0, 0.06);
}

.options-button:focus .options-list {
	display: block;
}

.options-list {
	display: none;
	position: absolute;
	right: 0;
	top: 45px;
	background: white;
	box-shadow: 0 0 4px grey;
	border-radius: 4px;
	margin: 0;
	padding: 4px 0;
	width: max-content;
	list-style-type: none;
	color: darkblue;
	z-index: 99;
}

.options-list li {
	text-align: left;
	font-size: medium;
	padding: 10px 24px;
	box-sizing: border-box;
	width: 100%;
	cursor: pointer;
}

.options-list li:hover {
	background: #faf6f6;
}

/* .options-button }}} */
