body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    background-color: #f8f8f8;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
header {
    text-align: center;
    background-color: #fff;
    padding: 10px;
}
header img {
    max-width: 100%;
    height: auto;
}
main {
    flex: 1;
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
}
h1, h2, h3 {
    margin: 0.5em 0;
}
hr {
    margin: 20px auto;
    border: none;
    height: 1px;
    background-color: #ccc;
    width: 80%;
}
.my-button {
    display: inline-block;
    padding: 10px 20px;
    margin: 10px;
    font-size: 1rem;
    color: #fff;
    background-color: #0077c0;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s;
}
.my-button:hover {
    background-color: #005f96;
}
table {
    width: 100%;
    max-width: 800px;
    margin: 20px auto;
    border-collapse: collapse;
    background-color: #fff;
}
th {
    background-color: #0077c0;
    color: #fff;
    padding: 12px;
}
td {
    padding: 10px;
    border: 1px solid #ddd;
}
tr:nth-child(even) {
    background-color: #f2f2f2;
}
footer {
    text-align: center;
    padding: 15px;
    background-color: #fff;
}
footer a {
    margin: 0 10px;
    color: #0077c0;
    font-size: 1.5rem;
    text-decoration: none;
}
footer a:hover {
    color: #005f96;
}
@media (max-width: 600px) {
    .my-button {
        width: 80%;
        font-size: 1rem;
    }
    table, th, td {
        font-size: 0.9rem;
    }
	
.container {
    width: 100%;
    padding-bottom: 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.container > p {
	margin: 0 0 1rem 0;
    line-height: 1.5;
    text-align: center;
}

.container > h2,
.container > h3 {
	margin: 0 0 1.25rem 0;
    text-align: center;
}

.table-group > div {
    width: 100%;
}

.table-group > div > div {
    overflow-x: auto;
}

.table-group h3 {
    margin-top: 2.5rem;
    margin-bottom: 0.1rem;
}

.table-group h5 {
    margin-top: 0;
}

.table-group table {
    width: 100%;
    table-layout: fixed;
    border-collapse: collapse;
}

.table-group th, .table-group td {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    border: 1px solid #ddd;
    padding: 0.5rem;
}

.table-group thead td {
    text-align: center;
    font-weight: bold;
}

.table-group tbody > tr:nth-child(even) {
    background-color: #f2f2f2;
}

.table-group tbody td:nth-child(1),
.table-group tbody td:nth-child(3),
.table-group tbody td:nth-child(5) {
    text-align: center;
}

.table-group tbody td:nth-child(4) {
    text-align: right;
}

.table-group td:nth-child(2) {
    width: 40%;
}

.table-group td:nth-child(5) {
    width: 17.5%;
}

#select-container {
    display: flex;
    justify-content: center;
    position: -webkit-sticky; /* Safari */
    position: sticky;
    top: 0;
    padding: 1rem;
    width: 100%;
    background-color: #fff;
    border-bottom: 1px solid #aaa;
    z-index: 100;
}

#select-container > .input-line {
    margin-right: 1rem;
}

#select-container > .input-line:last-child {
    margin-right: 0;
}

#select-container > .input-line select {
    padding: 0.5rem;
    width: 100%;
}

}


