:root {
    --grid-size: 48px;
}

.body {
    background-color: antiquewhite;
}

.mapOuterContainer {
    background-color: antiquewhite;
    width: 100%;
}

.mapInnerContainer {
    position: relative;
    width: fit-content;
    margin: auto;
}

.map {
    display: grid;
}

.grid {
    width: var(--grid-size);
    height: var(--grid-size);
}

.mapLayer {
    position: absolute;
    top: 0;
    left: 0;
}

.unit {
    width: var(--grid-size);
    height: var(--grid-size);
    position: absolute;
}

.hotkey {
    height: 64px;
    width: 64px;
    border: 1px solid black;
    background-color: white;
    position: relative;
}

.hotkey img {
    height: 64px;
    width: 64px;
}

.hotKeyButtonVisual {
    position: absolute;
    bottom: 0;
    right: 4px;
}

#dagger {
    position: absolute;
    top: 0;
    left: 0;
}

#doorwayToHell {
    overflow: hidden;
    cursor: none;
}

.actionView {
    border: 1px solid black;
    height: 400px;
    width: calc(400px * 1.4075);
    position: relative;
}