html, body {
    height: 100%;
    margin: 0;
    background: #111;
    font-family: Arial, sans-serif;
}

#map {
    width: 100%;
    height: 100%;
    background: #1862ad;
}

#playersBox {
    position: absolute;
    left: 15px;
    bottom: 15px;
    width: 180px;
    background: #071222;
    color: #cbd5e1;
    z-index: 9999;
    border-radius: 4px;
    overflow: hidden;
    font-size: 13px;
}

#playersBox .header {
    display: flex;
    justify-content: space-between;
    background: #0b1728;
    padding: 10px;
    font-weight: bold;
    border-bottom: 1px solid #243244;
}

#playerList {
    padding: 10px;
}

.playerItem {
    padding: 4px 0;
}