body {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #222;
    color: white;
}

canvas {
    border-radius: 3px;
}

p {
    color: white;
    opacity: 90%;
    font-family: "Bahnschrift";
    font-size: 12px;
}

a {
    color: white;
    opacity: 80%;
    font-family: "Bahnschrift";
    font-size: 10px;
}

#stack {
    position: relative; /* Ensures canvases stack within */
    width: 540px; /* Match canvas width */
    height: 540px; /* Match canvas height */
}

#stack > canvas {
    position: absolute;
    top: 0;
    left: 0;
}

#instructions-div {
    margin-top: 20px; /* Adds space below the canvas stack */
    text-align: center;
    width: 540px; /* Match canvas width */
    border-radius: 3px;
    background-color: #181818;
    padding: 5px;
}

#mapCanvas, #hoverCanvas {
    position: absolute;
    top: 0;
    left: 0;
}

.grenade_types {
    width: 540px;
}

.grenade_button {
    background-color: #181818;
    border-radius: 3px;
    border-color: rgb(138, 50, 211);
    margin: 2px;
    float: left;
}

.grenade_button.active, .grenade_button:active {
    background-color: rgb(63, 12, 104);
}

.util-svg {
    fill: white;
    height : 30px; 
    width : 26px;
}