ui/spectatorlistpanel.razor.scss
SpectatorListPanel {
    flex-direction: column;
    position: absolute;
    top: 8px;
    color: white;
    font-family: "Cal Sans";
    font-size: 22px;
    gap: 4px;
    max-width: 250px;

    .spectator {
        align-items: center;
        gap: 4px;

        img {
            width: 44px;
            height: 44px;
        }

        label {
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }
    }

    &.lobby {
        left: 8px;
    }

    &.playing {
        right: 8px;
        font-size: 16px;

        .spectator {
            img {
                width: 20px;
                height: 20px;
            }
        }
    }
}