/* Set the background color and font family for the entire page */
body {
  font-family: "sans-serif";
  font-size:18px;
  color: #333;
  background-color: #fff;
  padding: 20px;
}

footer {
    width: 90vw;
    padding: 5px;
    margin: 3rem auto;
}

a:hover {
    color: white;
    background: black;
}

#menu {
    padding: 3px;
    background-color: #dee2e6;
}

.center {
    margin: auto;
    padding: 10px;
    width: 50%;
    text-align: center;
}

.hidden {
    visibility: hidden;
}

button, select {
    background-color: #dee2e6;
    padding: 3px;
    padding-left: 18px;
    padding-right: 18px;
    border: 1px solid black;
    border-radius: 0px;
    text-align: center;
}

button:hover, select:hover, button:active, select:active {
    color: white;
    background: black;
}

article.landing {
    display: flex;
    flex-direction: row;
}

aside {
    width: 40%;
}

aside img {
    display: block;
    margin: 0 auto 1rem;
    border-radius: 5px;
}

table.ext-links {
    width: 80%;
}

th.ext-links, td.ext-links {
    text-align: right;
}

.nojs-canvas {
    width: 100%;
    height: 100%;
    border: 2px solid black;
    padding: 10px;
    text-align: center;
}

.mpc-table, .mpc-table th, .mpc-table td {
    border: 1px solid black;
    border-collapse: collapse;
    word-break: break-word;
    overflow: auto;
    text-align: center;
}

.mpc-table th {
    background-color: #dee2e6;
}

@media only screen and (max-width: 600px) {
    aside {
        display: none;
    }

    /* poc mpc */
    table {
        border: none;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    tbody {
        display: flex;
        flex-direction: row;
        width: 100%;
    }

    tr {
        display: flex;
        flex-direction: column;
        width: 100%;
    }
}
