/* simple buttons from http://semantic-ui.com/ */
/* source pour plus tard https://piccalil.li/blog/how-i-build-a-button-component/ */
:root { 
	--button-bg-darker: 0.93;
}

.button {
	cursor: pointer;
	display: inline-block;
	min-height: 1em;
	outline: none;
	border: none;
	vertical-align: baseline;
	background: hsl(0, 0%, 93%);
	color: rgba(0, 0, 0, 0.6);
	font-size: 0.875em;
	margin: 0em 0.25em 0em 0em;
	padding: 0.78571429em 1.5em 0.78571429em;
	text-transform: none;
	text-shadow: none;
	font-weight: bold;
	line-height: 1em;
	font-style: normal;
	text-align: center;
	text-decoration: none;
	border-radius: 0.28571429rem;
	box-shadow: 0px 0px 0px 1px transparent inset, 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset;
	-webkit-user-select: none;
	   -moz-user-select: none;
		-ms-user-select: none;
			user-select: none;
	transition: opacity 0.1s ease, background-color 0.1s ease, color 0.1s ease, box-shadow 0.1s ease, background 0.1s ease;
	will-change: '';
	-webkit-tap-highlight-color: transparent;
}

.button:hover,
.button:focus,
.button:active {
	text-decoration: none;
	background-color: hsl(0, 0%, calc(93% * var(--button-bg-darker)));
	background-image: none;
	box-shadow: 0px 0px 0px 1px transparent inset, 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset;
	color: rgba(0, 0, 0, 0.8);
}

.button.edit {
	background-color: hsl(163, 87%, 40%);
	color: #fff;
}
.button.edit:hover,
.button.edit:focus,
.button.edit:active {
	background-color: hsl(163, 87%, calc(40% * var(--button-bg-darker)));
}
.button.delete {
	background-color: hsl(357, 100%, 65%);
	color: #fff;
}
.button.delete:hover,
.button.delete:focus,
.button.delete:active {
	background-color: hsl(357, 100%, calc(65% * var(--button-bg-darker)));
}
.button.link {
	background-color: hsl(204, 100%, 35%);
	color: #fff;
}
.button.link:hover,
.button.link:focus,
.button.link:active {
	background-color: hsl(204, 100%, calc(35% * var(--button-bg-darker)));
}