html {
    height: 100%;
    background-color: rgb(16,16,16);
    margin: 0;
    padding: 0;
}
body {
    font-family: Helvetica;
    max-width: 800px;
    width: 800px;
    margin: auto;
    background-color: white;
    min-height: 100%;
    padding: 10px;
}
h1,h2,h3 {
    text-align: center;
}

table,tr,td,th {
    border-collapse: collapse;
    border: 1px solid darkblue;
}

th {
    background-color: #5db5f0;
}

.overlaybox {
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(64,64,64,0.8);
    z-index: 1000002;
    /*If that's not enough, I don't know what is!*/
    width: 100%;
    height:100%;
    overflow-y: scroll;
}
.overlayboxi {
    color: black;
    padding: 25px;
    margin-top: 25px;
    padding-top: 25px;
    border: 10px white solid;
    border-radius: 10px;
    align-items: center;
    align-self: center;
    margin-left: auto;
    margin-right: auto;
    background-color: white;
    width: fit-content;
    position: relative;

}

.nicebutton,.nicebutton:focus{
    padding: 5px;
    background-color: rgba(0,255,255,0);
    font-size: 16px;
    transition: all 100ms;
    border: none;
    color: black;
    border-radius: 5px;
}

.nicebutton:hover {
    background-color: rgba(0, 255, 255, 0.2);
    transition: all 100ms;
    border: none;
    cursor: pointer;
}

.nicebutton:active {
    border: none;
    background-color: #5db5f0;
    color: black;
}

.mininicebutton,.mininicebutton:focus{
    padding: 0;
    background-color: rgba(0,255,255,0);
    font-size: 12px;
    transition: all 100ms;
    border: none;
    color: black;
    border-radius: 5px;
    margin: 0;
}

.mininicebutton:hover {
    background-color: rgba(0, 255, 255, 0.2);
    transition: all 100ms;
    border: none;
    margin: 0;
}

.mininicebutton:active {
    border: none;
    background-color: rgba(0, 255, 255, 1);
    color: black;
    margin: 0;
}

table {
    margin: auto;
}

#tmap {
    height: 500px;
    width: 500px;
}

#map {
    height: 200px;
    width: 200px;
}

tr:hover {
    cursor: pointer;
}

.usrow {
    font-style: italic;
}