copyable-field {
	display: inline-block;
	margin-top: 10px;
	margin-bottom: 10px;
}

message-box.fixed {
	position: fixed;
	bottom: 1em;
	left: 5%;
	width: 90%;
	z-index: 999;
}

div.textblock {
	border: 1px dashed #aaa;
	padding: .5em;
	background: #f3f3f3;
	width: 95%;
	margin-left: 2.5%;
}

h4 {
	margin-top: 1em;
}

span.badvalue {
	color: red;
	font-weight: bold;
}

span.goodvalue {
	color: green;
}

a.removelink {
	font-size: 150%;
	color: red;
	text-decoration: none;
	font-weight: bold;
}

button.icon-button {
	padding: 0;
	font-size: 140%;
	width: 1.75em;
	height: 1.75em;
	border-radius: .3em;
	border: 1px solid #c6c7c8;
	background: #eee;
	transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
	margin-right: 0.1em;
	overflow: hidden;
}

button.icon-button:hover {
	background: #d3d4d5
}

button.icon-button-green {
	color: #27ae60;
}

button.icon-button-red {
	color: #e74c3c;
}

span.eqmark {
	font-size: 150%;
	font-weight: bold;
	padding: .2em;
	display: inline-block;
}

span.eq {
	color: #27ae60;
}

span.neq {
	color: #c0392b;
}

tr.row-selected > td {
	background: #28e285;
}

tr.row-selected-additional > td {
	background: #42c282;
}

tr.row-unavailable > td {
	background: #aaa;
	color: #444;
}

summary {
	cursor: pointer;
	font-weight: bold;
	color: #024893;
}

span.crossed-out {
  position: relative;
  display: inline-block;
  line-height: 1;
}

span.crossed-out::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120%;
  height: 0.1em;
  background: red;
  transform: translate(-50%, -50%) rotate(-45deg);
  transform-origin: center;
  pointer-events: none;
}

table.data-table td,th {
	overflow: hidden;
	text-overflow: ellipsis;
}

table.data-table td:hover,th:hover {
	overflow: auto;
	text-overflow: inherit;
}
