ui/lobbynametagpanel.razor.scss
LobbyNametagPanel {
    position: absolute;
    //width: 400px;
    //height: 200px;
    flex-direction: row;
    color: white;
    font-family: Nunito;
    font-weight: 800;
    text-shadow: 2px 2px 4px black;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    //align-content: flex-start;
    //background-color: red;
    gap: 4px;

    .name {
        position: relative;
        font-family: 'Inter-Black';
        text-align: center;
        align-items: center;
        font-size: 22px;
        color: rgba(255,255,255,0.75);
        text-shadow: 2px 2px 4px black;
        word-break: break-all;
        //height: 150px;
        max-width: 150px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .remove-btn {
        position: relative;
        top: 2px;
        width: 24px;
        height: 24px;
        background-color: red;
        font-size: 20px;
        justify-content: center;
        align-items: center;
        text-align: center;
        pointer-events: all;
        cursor: pointer;
        transform: scale(1);
        transition: all 0.1s ease-in-out;
        text-shadow: 0px 0px 0px transparent;

        &:hover {
            transform: scale(1.1);
            sound-in: ui.button.over;
        }

        &:active {
            transform: scale(0.95);
            sound-in: click;
        }
    }
}