.popup {
    position: fixed;
    border: 3px solid var(--dark);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 4px 6px 0 rgba(0, 0, 0, .4);
    display: none;
    z-index: 5000;
}

.pop-hdr {
    background: var(--pink);
    color: white;
    padding: 5px 9px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Press Start 2P', monospace;
    font-size: 7px;
    cursor: grab;
}

.pop-hdr:active {
    cursor: grabbing;
}

.pop-x {
    cursor: pointer;
    font-size: 13px;
    font-weight: bold;
}

#pop-warn {
    top: 65px;
    left: 45px;
    width: 230px;
}

#pop-miss {
    top: 50px;
    right: 65px;
    width: 250px;
}

#toast {
    position: fixed;
    bottom: 70px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--dark);
    color: white;
    font-family: 'Press Start 2P', monospace;
    font-size: 8px;
    padding: 10px 18px;
    border-radius: 20px;
    display: none;
    z-index: 9000;
    border: 2px solid var(--pink);
    white-space: nowrap;
    max-width: 90vw;
    overflow: hidden;
    text-overflow: ellipsis;
}
