@charset "UTF-8";

:root {
	--link-fg: #060;
	--link-hover-fg: #0b0;
	--link-hover-bg: rgba(200, 200, 200, 0.5);
	--body-fg: #121212;
	--body-bg: #eeeeee;
}

html {}

body
{
	font-style: normal;
	font-family: Roboto, Verdana, sans-serif;
}

:link, :visited {
	text-decoration: none;
	color: var(--link-fg);
	background-color: var(--link-bg);
}
:link:hover, visted:hover {
	background-color: var(--link-hover-bg);
	color: var(--link-hover-fg);
}

#mainnav {
}
#mainnav li {
	background: white;
	color: black;
	text-transform: uppercase;
	border: 1px solid #e4e4e4;
	margin: 0;
	padding: 0;
	display: inline-block;
}
#mainnav li a {
	padding: 0.3em 1em;
}
#mainnav ul {
	list-style: none;
	text-align: left;
	padding: 0;
	margin: 1em 1em;
}
#mainnav :link, #mainnav :visited {
	background-color: #eee;
	color: black;
}
#mainnav :link:hover, #mainnav :visited:hover {
	background-color: black;
	color: #eee;
}
#actions-box {
	display: flex;
}

#actions-box > div {
	margin: 1em;
	padding: 1em;
}

.btn-row
{
	display: flex;
	flex-flow: row wrap;
	padding: 2em;
	gap: 2em;
}

.btn
{
}
.btn a
{
	border: 1px solid black;
	border-radius: 5px;
	padding: 1em 2em;
}

.btn-danger a
{
	background-color: rgba(249,192,192);
}

.btn-safe a
{
	background-color: rgba(192,249,192);
}


/* Tooltip container */
.tooltip {
  position: relative;
  display: inline-block;
  border-bottom: 1px dotted black; /* If you want dots under the hoverable text */
}

/* Tooltip text */
.tooltip .tooltiptext {
  visibility: hidden;
  width: 120px;
  bottom: 100%;
  left: 50%;
  margin-left: -60px; /* Use half of the width (120/2 = 60), to center the tooltip */
  background-color: black;
  color: #fff;
  text-align: center;
  padding: 5px 0;
  border-radius: 6px;

  /* Position the tooltip text - see examples below! */
  position: absolute;
  z-index: 1;
}

/* Show the tooltip text when you mouse over the tooltip container */
.tooltip:hover .tooltiptext {
  visibility: visible;
}
/* tooltip bottom arrow */
.tooltip .tooltiptext::after {
  content: " ";
  position: absolute;
  top: 100%; /* At the bottom of the tooltip */
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: black transparent transparent transparent;
}
