ProjectLoadPopup
{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    background-color: rgba(black, 0.6);
    pointer-events: all;

    justify-content: center;
    align-items: center;

    .title
    {
        position: absolute;
        top: 6px;
        left: 16px;
        font-size: 16px;
        color: black;
        font-weight: bold;
    }

    .content
    {
        width: 80%;
        height: 80%;
        background-color: #686868;
        flex-direction: row;
        pointer-events: all;
        font-size: 24px;
        font-family: Poppins;
        padding: 16px;
        padding-top: 36px;
        gap: 16px;

        .left
        {
            width: 40%;
            flex-direction: column;
            background-color: #4e4e4e;
            padding: 8px;

            .folders
            {
                flex-direction: column;
                overflow: scroll;
                flex-grow: 1;

                .folder
                {
                    flex-shrink: 0;
                    padding: 4px;
                    background-color: #7a7a7a;
                    cursor: pointer;

                    TextEntry
                    {
                        color: black;
                    }

                    &.selected
                    {
                        background-color: #a5a5a5;
                    
                    }

                    &:hover
                    {
                        background-color: #a5a5a5;
                    }

                    &:active
                    {
                        background-color: #7a7a7a;
                    }
                }
            }

            > button
            {
                padding: 8px;
                background-color: #7a7a7a;
                flex-shrink: 0;
                cursor: pointer;

                &:hover
                {
                    background-color: #a5a5a5;
                }

                &:active
                {
                    background-color: #7a7a7a;
                }
            }
        }

        .right
        {
            width: 60%;
            flex-direction: column;
            background-color: #4e4e4e;
            padding: 8px;

            .files
            {
                flex-grow: 1;
                flex-direction: column;
                overflow: scroll;

                .file
                {
                    flex-shrink: 0;
                    padding: 4px;
                    background-color: #7a7a7a;
                    cursor: pointer;

                    &:hover
                    {
                        background-color: #a5a5a5;
                    }

                    &:active
                    {
                        background-color: #7a7a7a;
                    }
                }
            
            }

            button
            {
                flex-shrink: 0;
                padding: 0px 24px;
                justify-content: center;
                align-items: center;
                background-color: #7a7a7a;
                cursor: pointer;

                &:hover
                {
                    background-color: #a5a5a5;
                }

                &:active
                {
                    background-color: #7a7a7a;
                }
            }
        }

        .close
        {
            position: absolute;
            top: 4px;
            right: 4px;
            color: black;
            font-size: 24px;
            cursor: pointer;

            &:hover
            {
                color: white;
            }

            &:active
            {
                color: #818181;
            }
        }
    }
}