NameTagPanel
{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    white-space: nowrap;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-family: "Balsamiq Sans";

    .card
    {
        flex-direction: column;
        background-color: #0008;
        border-radius: 8px;
        overflow: hidden;
        padding: 10px 20px;
        justify-content: center;
        align-items: center;
        gap: 20px;

        .name
        {
            font-size: 25px;
            color: #fff;
            margin-top: 4px;
            text-stroke: 4px black;
        }

        .gameobject
        {
            color: #00ff21;
            font-size: 20px;
        }
    }
}
