body {
    font-family: andale mono, monospace;
}

[data-tab-content] {
    display: none;
}

.active[data-tab-content] {
    display: block;
}

body {
    background-image: url("ForgottenTowns.jpg");
    background-size: cover;
    padding: 0;
    margin: 0;
}

.tabs {
    display: flex;
    justify-content: space-around;
    list-style-type: none;
    margin: 0;
    padding: 0;
    border-bottom: 1px solid black;
}

.tab {
    cursor: pointer;
    padding: 10px;
}

.tab.active {
    background-color: #CCC;
}

.tab:hover {
    background-color: #AAA;
}

.tab-content {
    margin-left: 20px;
    margin-right: 20px;
}

.list {
    padding-bottom: 1em;
}

#outputContent {
    color: #FF0004;
    background-color: #CDCDCD;
}

.first {
    color: #FF0004;
}

table {
    font-family: arial, sans-serif;
    border-collapse: collapse;
    width: 100%;
}

td, th {
    border: 1px solid #dddddd;
    text-align: left;
    padding: 8px;
}

tr:nth-child(even) {
    background-color: #dddddd;
}

@media only screen and (max-width: 400px) {
    .mobilehide {
        display: none;
    }
}

@media only screen and (min-width: 401px) {
    .mobileshow {
        display: none;
    }
}