﻿LobbyPhase {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    font-family: Balsamiq Sans;
    color: white;
    font-weight: bold;

    .controls {
        position: absolute;
        right: 40px;
        bottom: 40px;
        flex-direction: column;
        justify-content: flex-end;
        align-items: flex-start;
        font-weight: bold;
        font-family: Balsamiq Sans;
        font-size: 28px;
        color: white;
        gap: 10px;

        .control {
            flex-direction: row;
            align-items: center;
            gap: 20px;
            position: relative;

            .cover {
                position: absolute;
                left: 0;
                width: 100%;
                height: 100%;
                border-radius: 8px;
                background-color: rgba(0, 0, 0, 0.6);
            }
        }

        &.disabled {
            opacity: 0.4;
        }

        .text {
            text-stroke: 8px black;
            z-index: 10;
        }
    }

    inputglyph {
        background-size: contain;
        background-color: rgba(0,0,0, 0.8);
        border-radius: 12px;
        width: 60px;
        height: 60px;

        &.pressed {
            transform: scale(0.85);
            opacity: 0.8;
        }
    }
}
