/*
 * Copyright (C) 2023 Opsmate, Inc.
 *
 * Permission is hereby granted, free of charge, to any person obtaining a
 * copy of this software and associated documentation files (the "Software"),
 * to deal in the Software without restriction, including without limitation
 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
 * and/or sell copies of the Software, and to permit persons to whom the
 * Software is furnished to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice shall be included
 * in all copies or substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
 * OTHER DEALINGS IN THE SOFTWARE.
 *
 * Except as contained in this notice, the name(s) of the above copyright
 * holders shall not be used in advertising or otherwise to promote the
 * sale, use or other dealings in this Software without prior written
 * authorization.
*/

html, body {
	background: white;
	color: black;
}
html {
	margin: 0;
	padding: 0;
}
body {
	margin: 0;
	padding: 2rem;
	text-align: center;
}
a {
	color: #009;
	text-decoration: underline;
}
h1 {
	margin-top: 0;
	font-size: 250%;
}
section {
	margin: 2rem 0;
}
.intro {
	max-width: 1000px;
	line-height: 150%;
	margin: 0 auto;
	font-size: 120%;
}
.running_info {
	max-width: 1000px;
	line-height: 150%;
	margin: 0 auto;
	font-size: 120%;
}
.test_domain {
	font-size: 140%;
	background: #f3f3f3;
	border: solid #e3e3e3 1px;
	border-radius: 2px;
	padding: 0.3rem 0.5rem;
}
footer {
	margin-top: 5rem;
	color: #333;
}
.big_button {
	display: inline-block;
	padding: 0.6em 1.2em;
	font-size: 130%;
	font-weight: bold;
	text-align: center;
	text-decoration: none;
	cursor: pointer;
	border: none;
	border-radius: 5px;
	transition: opacity 0.3s ease-in-out;
}
.big_button:hover {
	opacity: 0.8;
}
.start_button {
	background-color: #4caf50;
	color: white;
}
.stop_button {
	background-color: #FF6347;
	color: white;
}
.close_button {
	font-size: 110%;
	background-color: #ddd;
	color: black;
}
dialog {
	text-align: center;
}
pre {
	text-align: left;
}
table {
	border: solid black 1px;
	border-collapse: collapse;
	margin: 0 auto;
}
td, th {
	border: solid black 1px;
	padding: 0.3rem 0.4rem;
	text-align: left;
}
ul, li {
	margin: 0;
	padding: 0;
	list-style-type: none;
}
.dtp {
	background: red;
	color: white;
	font-weight: bold;
	border-radius: 4px;
	padding: 0.3em 0.4em;
	white-space: nowrap;
	display: inline-block;
}
.dtp > a {
	color: inherit;
}
