body {
    font-family: Georgia;
}

p.rankhelp {
    font-size: smaller;
    padding-left: 20px;
}

.games table {
    padding: 5px;
}

.games td {
    border: solid 1px;
    padding: 10px;
    min-width: 200px;
    height: 40px;
}

td.numlabel {
    border: none;
    padding: 10px;
    min-width: 10px;
    height: 40px;
    text-align: center
}

select.playerCount {
    width: 40px;
}

img.logo {
    height: 75px;
    max-width: 100%;
    float: left;
}

div.header {
    min-height: 75px;
}

a.header {
    color: red;
}

span.header {
    font-size: 40px;
    display: flex;
    align-items: center;
    height: 75px;
}

@media only screen and (max-width: 450px) {
   span.header { 
      font-size: 30px;
   }
}

a.header {
    text-decoration:none;
}

.errors p {
    color: orange;
    font-weight: bold;
    width: 70%;
}

.gamespan {
    color: blue;
    border: solid 1px red;
    padding: 2px;
    margin: 2px;
    cursor: grab;
}

.targeted.rankcell {
    outline: solid 2px;
}

.targeted.gamespan {
    outline: solid 2px red;
}

.gamename {
    color: blue;
}

img.demo {
    border: dashed 3px gray;
    margin-left: 10px;
    padding: 5px;
}

.hoverhelp {
    position: relative;
}
.onhoverhelp {
    visibility: hidden;
    position: absolute;
    background-color: #f0f7fb;
    width: 180px;
    padding: 5px;
    z-index: 1;
}
.hoverhelp:hover .onhoverhelp {
    visibility: visible;
}