body{
    font-family:"Courier New", Courier, monospace;
    background-color: lightBlue;
}
table{
    border: solid 1px white;
    border-collapse: collapse;
    border-spacing: 0;
}
thead tfoot th {
    border: solid 1px white;
    padding: 10px;
    text-align: center
}
tbody td {
    border: solid 1px white;
    padding: 10px;
    text-align: center
}

.endpoint{
    font-size: smaller;
}

pre {
    white-space: pre-wrap;
    word-break: break-all;
}

.tmpauth-login {  
    display: flex;
    flex-direction: row;
    align-items: center;
    
    width: 200px;
    padding: 8px;
    border-radius: 6px;
    
    background: #000;
    color: #fff;
    
    text-decoration: none;
    font-family: sans-serif;
    
    line-height: 24px;
    vertical-align: middle;
}
.tmpauth-login img {
    width: 32px;
    height: 32px;
}
.tmpauth-login span {
    flex: 1;
    margin-left: 8px;
    text-align: center;
}

.midtext {
    text-align: center;
}

.hanger{
    position:absolute;
    right:10px;
    top:10px;
}

.centerfixed {
    position: fixed;
    top: 50%;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%);
}

.bottomfixed {
    position: fixed;
    bottom: 0px;
    margin-bottom: 0px;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%);
}

.flexcolumn {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

@media (max-width: 600px) { 
    button {
        margin: 8px 8px;
        padding: 8px 8px;
    }

    .extra {
        display: none;
    }
}

@media (min-width: 600px) {
    .mobile {
        display: none;
    }
}