YesNoPopup
{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1010;
    background-color: rgba(black, 0.6);
    pointer-events: all;
    font-family: Poppins;
    font-size: 24px;

    justify-content: center;
    align-items: center;

    .content
    {
        width: 40%;
        height: 30%;
        background-color: #686868;
        pointer-events: all;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 16px;
        gap: 16px;
    
        h1
        {
            font-size: 32px;
            color: black;
            font-weight: bold;
        }

        TextEntry
        {
            width: 80%;
            background-color: #5f5f5f;

            .placeholder
            {
                color: #aaa;
            }
        }

        .row
        {
            justify-content: space-between;
            width: 80%;
            gap: 8px;

            button
            {
                background-color: #5f5f5f;
                padding: 4px 8px;
                flex-grow: 1;
                justify-content: center;
            }
        }


        .close
        {
            position: absolute;
            top: 4px;
            right: 4px;
            color: black;
            font-size: 24px;
            cursor: pointer;

            &:hover
            {
                color: white;
            }

            &:active
            {
                color: #818181;
            }
        }
    }
}