<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">section {
	margin: 0 8px;
	font-family: Merriweather, sans !important;
}

.header-text {
	color: white;
	background: linear-gradient(blue, navy);
	border: double 5px white;
	border-radius: 1em;
	text-align: center;
	padding: 5px 0;
}

.header-text h1,
.header-text h6 {
	margin: 0;
}

.header-text h1 {
	font-size: 1.5em;
}

.half-circle-container {
	display: flex;
	flex-direction: row;
	justify-content: center;
}

.bottom-circle {
	margin-top: -5px;
	transform: rotate(180deg);
}

.top-circle {
	margin-bottom: -5px;
}

.half-circle {
	height: 50px;
	/* Alter here for height of circle segment */
	overflow: hidden;
}

.half-circle&gt;div {
	width: 400px;
	/* Alter here for circle diameter */
	height: 400px;
	/* Alter here for circle diameter */
	border: 5px double white;
	border-radius: 50%;
	background: navy;
}

.tournament {
	display: flex;
	flex-direction: row;
	width: 100%;
	margin: 10px;
	border: 2px solid #e0e0e0;
	border-radius: 5px;
	padding: 10px;
	justify-content: center;

}

.tournament .round {
	font-size: 12px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	width: 200px;
	list-style: none;
	padding: 0;
}

.tournament .round .spacer {
	flex-grow: 2;
}

.tournament .round .spacer:first-child,
.tournament .round .spacer:last-child {
	flex-grow: 1;
}

.first-four {
	border: 1px solid #888;
	border-radius: 1em;
	background-color: lightcyan;
	padding: 0 1em;
}

.tournament-header {
	text-align: center;
	font-weight: bold;
	border-radius: 1em;
	border: 1px solid black;
	background-color: #f54e00;
	color: white;
}

.first-four-winner li.game-left,
.round-1 li.game-left,
.round-2 li.game-left,
.round-3 li.game-left,
.round-4 li.game-left,
.semi-final li.game-left {
	padding-left: 1.0em;
}

.first-four-winner li.game-right,
.round-1 li.game-right,
.round-2 li.game-right,
.round-3 li.game-right,
.round-4 li.game-right,
.semi-final li.game-right {
	padding-right: 0.5em;
}

.region {
	font-size: 1.5em;
	font-weight: bold;
}

.region-right {
	text-align: right;
	padding-right: 5px;
}

.region-left {
	text-align: left;
	padding-left: 5px;
}

li.game-left {
	/* border: 2px solid #f0f0f0; */
	padding: 5px;
}

li.game-left a {
	display: block;
}

li.game-left span:first-child,
li.game-right span:last-child {
	font-size: 12px;
	color: #333;
}

li.game-left a,
li.game-right a {
	font-size: 14px;
	color: rgb(167, 14, 19);
	text-transform: capitalize;
}

li.game-left a i,
li.game-right a i {
	margin-right: 5px;
}

li.game-right {
	text-align: right;
	/* border-left: 1px solid #aaa; */
}

li.game-left {
	/* border-right: 1px solid #aaa; */
}

li.game-bottom {
	/* border-bottom: 1px solid #aaa; */
}

li.game-top {
	border: none;
	/* border-bottom: 1px solid #aaa; */
}

li.game-left.spacer {
	/* border-right: 1px solid #aaa; */
	min-height: 5px;
	padding-right: .25em;
}

li.game-right.spacer {
	/* border-left: 1px solid #aaa; */
	min-height: 5px;
	padding-left: .25em;
	text-align: left;
}

.final {
	text-align: center;
	padding-top: 1em;
	padding-bottom: 1em;
	/* border: 1px solid #aaa; */
	margin-top: 1em;
	margin-bottom: 1em;
	font-weight: bold;
}

.finals .centered {
	text-align: center;
	font-weight: bold;
}

.finals .centered&gt;input {
	display: block;
	width: 4em;
	margin: 0 auto 0 auto;
	text-align: center;
}

.body-first-child {
	margin-top: -45px;
}

.extra-padding {
	padding-top: 45px;
}


ul.round {
	border-top: 1px solid #aaa;
	border-bottom: 1px solid #aaa;
	border-right: 1px solid #aaa;
	border-bottom-right-radius: 5px;
	border-top-right-radius: 5px;
}

ul.round-2 {
	height: 80%;
	margin-top: auto;
	margin-bottom: auto;
}

ul.round-3 {
	height: 40%;
	margin-top: auto;
	margin-bottom: auto;
}

ul.round-4 {
	height: 20%;
	margin-top: auto;
	margin-bottom: auto;
}

ul.round-5 {
	height: 10%;
	margin-top: auto;
	margin-bottom: auto;
}</pre></body></html>