body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}

@media (prefers-color-scheme: dark) {
    body {
        background-color: #202020;
        color: white;
    }
    table tr {
        border-bottom: 1px solid grey;
        border-top: 1px solid grey;
    }
    #navbar-content, #navbar-reload {
        color: white;
        background-color: blue;
    }
}

@media (prefers-color-scheme: light) {
    body {
        background-color: white;
        color: black;
    }
    table tr {
        border-bottom: 1px solid lightgrey;
        border-top: 1px solid lightgrey;
    }
    #navbar-content, #navbar-reload {
        color: white;
        background-color: blue;
    }
}

#navbar {
	position: absolute;
	left: 0px;
	top: 0px;
	height: 44px;
	width: 100%;
	width: 100vw;
}

#navbar-content {
	text-align: center;
	vertical-align: middle;
	line-height: 44px;
	font-weight: bold;
	font-size: 1.3em;
}

#navbar-reload {
	position: absolute;
	text-align: center;
	vertical-align: middle;
	line-height: 44px;
	font-weight: bold;
	font-size: 1.3em;
	right: 10px;
	top: 0px;
	font-family: Lucida Sans Unicode;
	cursor: pointer;
}

table {
	position: relative;
	top: 26px;
	margin-top: 10px;
	table-layout: auto;
    border-collapse: collapse;
	width: 100%;
}

table tr {
	height: 44px;
	padding: 10px 0px 10px 0px;
    border-collapse: collapse;
}

table tr:first-child{
    border:none;
}

table tr th {
	font-size: 1.1em;
	border-bottom: 2px solid;
}

table .left-column {
	font-weight: bold;
	text-align: left;
}

table .right-column {
	text-align: right;
	width: auto;
}
