* {
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
	color: rgb(74, 85, 104);
	margin: 0;
	padding: 0;
	outline: 0;
	word-break: break-word;
}
body {
	padding: 30px;
	background: #f6fafb;
}
h1 {
	font-weight: normal;
}
h1 a {
	text-decoration: none;
}
h1 span {
	color: #0083c4;
	font-weight: bold;
}
h1, h2, h3, h4, h5, h6 {
	color: rgb(74, 85, 104);
}
p.subline {
	color: rgb(113, 128, 150);
	margin-top: 5px;
	font-size: smaller;
}
.log {
	margin-top: 30px;
	background: #555;
	padding: 15px 20px 10px;
}
.log p {
	font-family: monospace;
	color: #eee;
	padding-bottom: 5px;
	line-height: 1.35;
}
.log p a {
	font-family: inherit;
	text-decoration: underline;
	cursor: pointer;
	color: #eee;
}
.container {
	background: white;
/* 	max-width: 1200px; */
	margin-top: 30px;
	border-top: 3px solid #0083c4;
	padding: 0 30px 30px;
	box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
				0 4px 6px -2px rgba(0, 0, 0, 0.05);
	overflow: scroll;
}
.button {
	border: none;
	display: inline-block;
	font-size: smaller;
	padding: 8px 14px;
	margin: 5px 0;
	background: #0083c4;
	color: white;
	text-decoration: none;
	box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1),
				0 1px 2px 0 rgba(0, 0, 0, 0.06);
	z-index: 1;
	position: relative;
}
.button::before {
	content: '';
	z-index: -1;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: #0074b5;
	transform-origin: center right;
	transform: scaleX(0);
	transition: transform 0.25s ease-in-out;
}
.actions button {
	border: none;
}
.actions button:hover {
	cursor: pointer;
}
.actions input {
	padding: 8px 12px;
	font-size: smaller;
	margin: 5px 0;
	border: 1px solid #d6dbe4;
}
.actions input:focus {
	border-color: #0083c4;
}
.button:hover {
	cursor: pointer;
}
.button:hover::before {
	transform-origin: center left;
	transform: scaleX(1);
}
.right {
	float: right;
}
ol {
	margin-left: 40px;
}
table {
	margin-top: 30px;
	width: 100%;
	border-collapse: collapse;
}
table th {
	text-align: left;
}
table thead th {
	text-transform: uppercase;
	background: #cfd6e2;
	color: white;
}
table tbody th {
}
table th,
table td {
	padding: 8px 12px;
	border: 1px solid #d6dbe4;
}
table td:first-of-type {
/* 	min-width: 130px; */
}
table tr.recently {
	background: #d5f9d2;
}
table tr.recently td {
	border-color: #a5b4a7;
}
table tr.recently td,
table tr.recently td a {
	color: black;
}


@media only screen and (max-width: 640px) {
	body {
		padding: 15px;
	}
	.container {
		margin-top: 15px;
		padding: 0 15px 15px;
	}

	table thead {
		display: none;
	}

	table tr {
		display: flex;
		flex-direction: column;
		margin-bottom: 1rem;
	}

	table td {
		border-bottom: 1px solid #ddd;
		display: block;
		text-align: right;
	}

	table tr td:not(:first-of-type) {
		border-top: 0;
	}

	table td::before {
		content: attr(data-label);
		float: left;
		font-size: smaller;
		margin-top: 1px;
		opacity: 0.5;
	}
}