
SceneMenuPanel
{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #333;
    pointer-events: all;
    flex-direction: row;
    padding: 0px 60px;
    color: #ccc;
    font-family: Poppins;
    font-size: 14px;


    .left
    {
        width: 400px;
        flex-direction: column;
        padding-top: 100px;
        padding-right: 50px;

        > .title
        {
            font-size: 40px;
            font-weight: bold;
        }

        > .explanation
        {
            color: #aaaa;
            font-size: 17px;
            margin-bottom: 50px;
            width: 100%;
            flex-direction: column;
            gap: 20px;
        }
    }

    .scene-list
    {
        flex-direction: row;
        flex-wrap: wrap;
        padding: 50px 0px;
        gap: 2rem;
        overflow: scroll;

        > *
        {
            flex-shrink: 0;
        }

        .group
        {
            flex-direction: column;
            flex-grow: 1;
            gap: 1px;

            h1
            {
                padding: 10px 20px;
                font-weight: bold;
                font-size: 12px;
                color: #fff;
            }

            .scenes
            {
                flex-wrap: wrap;
                gap: 1px;
                border-radius: 20px;
                overflow: hidden;
            }
        }
    }

    .lobby-list
    {
        width: 500px;
        flex-direction: column;
        margin: 20px;
        overflow: scroll;
        gap: 5px;
    }

    .header
    {
        margin-bottom: 10px;
        font-size: 20px;
        width: 100%;
        font-weight: bold;
    }
}


SceneButton
{
    background-color: #4440;
    cursor: pointer;
    flex-direction: row;
    flex-grow: 1;
    flex-shrink: 0;
    gap: 8px;
    align-items: center;
    justify-content: center;
    transition: all 0.1s ease-out;
    padding: 10px 20px;
    background-color: #555;
    color: #aaa;

    .title
    {
        font-size: 17px;
        font-family: Poppins;
        font-weight: normal;
    }

    &:hover
    {
        opacity: 1;
        background-color: #3555d2;
        color: #fff;
        sound-in: ui.button.over;
    }

    &:active
    {
        background-color: #fff;
        color: #666;
        sound-in: ui.button.press;
    }
}