input[type=button] {
    cursor: pointer;
}
#pauseGame {
    display: none;
}
.board {
    -moz-user-select: none;
    -khtml-user-select: none;
    -webkit-user-select: none;
    -o-user-select: none;
    user-select: none;
    display: inline-block;
    border: 1px solid #000;
    position: relative;
}
.control {
    display: inline-block;
    vertical-align: bottom;
}
.console {
    border: 1px solid rgba(0,0,0,0.5);
    border-radius: 5px;
    box-shadow: 1px 1px 3px rgba(0,0,0,0.2);
    width: 350px;
    height: 500px;
    margin: 5px;
    padding: 5px;
    overflow-y: scroll;
}
.cell {
    display: inline-block;
    position: relative;
    border: 1px solid #000;
    width: 25px;
    height: 25px;
    cursor: pointer;
}
.cell.selected {
    border-color: rgba(255,255,0,1);
    color: rgba(255,255,0,1);
}
.spawn {
    position: absolute;
    width: 25px;
    height: 21px;
    padding-top: 4px;
    text-align: center;
    font-weight: bold;
    font-family: sans-serif;
    font-size: 10px;
}
.spawn.creep {
    background: rgba(255,0,0,0.5);
}
.spawn.tower {
    background: rgba(0,0,255,0.5);
}
.spawn.spawnPoint {
    background: rgba(255,0,0,0.15);
}
.spawn.base {
    background: rgba(0,255,0,0.5);
}
.shot {
    pointer-events: none;
    font-family: monospace;
    font-weight: bold;
    font-size: 18px;
    color: rgba(0,0,0,0.5);
    height: 20px;
    width: 20px;
    margin-top: -11px;
    margin-left: -10px;
    text-align: center;
    position: absolute;
}
