.controlsLayout {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    padding: 0.5em;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 1em;

    div.group {
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: nowrap;
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
        gap: .25em;
    }

    button,
    button {
        font: inherit;
        width: 2.5em;
        height: 2.5em;
        display: grid;
        place-items: center;
        flex: 0 0 auto;
        cursor: pointer;
        color: #fff;
        border: 2px solid #000;
        border-radius: 2px;
        background: #3a3a3a;
        margin: 0;
        box-sizing: border-box;
        transition: all 0.3s;

        &:hover {
            background-color: #adf;
            color: #000;
        }

        &:active {
            background-color: rgb(0, 153, 255);
            color: #000;
        }
    }

}