@font-face {
    font-family: "Roboto";
    src: local("Roboto Regular"), local("Roboto-Regular"),
        url(/static/Roboto-Regular.woff2) format("woff2");
    font-weight: 400;
    font-style: normal;
}

html {
    color: #212121;
    background-color: #0277bd;
}

body {
    font-size: 18px;
    font-family: Roboto, Helvetica, Arial, sans-serif;
}


.container {
    padding: 16px;
    margin-top: 0;
    width: 650px;
    margin-left: auto;
    margin-right: auto;
    background-color: #ffffff;
    border-radius: 8px;
    transition: all 0.3s ease-out;
    box-shadow:
        0px 2px 1px -1px rgba(0, 0, 0, 0.2),
        0px 1px 1px 0px rgba(0, 0, 0, 0.14),
        0px 1px 3px 0px rgba(0, 0, 0, 0.12);
}

.title {
    margin-right: 8px;
}
.connected {
    color: green;
}
.disconnected {
    color: red;
}
.reason, .reason a {
    color: #212121;
}
li.reason {
    margin-left: 12px;
}

table tr td:first-of-type {
    font-weight: bold;
    vertical-align: top;
}
h1 {
    margin-top: 8px;
}
.log {
    white-space: pre-wrap;
    overflow-wrap: break-word;
    font-size: 12px;
    line-height: 18px;
    font-family: monospace;
    padding: 4px;
    border-radius: 8px;
    background-color: #fafafa;
}

@media only screen and (max-width: 600px) {
    body {
        width: 100vw;
    }
    .container {
        width: calc(100% - 24px);
        margin: 0;
        padding: 8px;
    }
  }