
Chatbox
{
    position: absolute;
    bottom: 16px;
    left: 16px;
    width: 500px;
    height: 500px;
    padding: 16px;
    z-index: 250;

    background-color: rgba(black, 0.4);
    flex-direction: column;
    padding: 8px;
    gap: 8px;
    font-family: Verdana;
    font-size: 18px;
    transition: all 0.1s ease-out;

    .chat
    {
        flex-grow: 1;
        flex-direction: column-reverse;
        overflow-y: scroll;
        gap: 4px;

        chatentry
        {
            opacity: 1;
            transform: opacity 0.1s ease-out, left 0.1s ease-out;
            left: 0px;

            &.fade
            {
                opacity: 0;
            }

            &:intro
            {
                left: 8px;
            }
        }
    }

    textentry
    {
        opacity: 1;
        color: white;
        font-size: 20px;
        flex-shrink: 0;

        .placeholder
        {
            color: rgba(white, 0.5);
        }
    }
}
