﻿.widget.hidden {
    /*visibility: hidden;*/
    display: none !important;
}


#gameInfo {
    min-height: 8em;
    min-width: 10em;
    flex: 0 1 auto;
    overflow: auto;
}

#promotions {
    display: table;
    flex-wrap: wrap;
}

    #promotions .promotionSelection {
        display: table-cell;
        width: 25%;
        aspect-ratio: 1/1;
        border: 1px solid black;
        flex: auto;
        position: relative;
    }

    #promotions .promotionSelection img {
        width: 100%;
        height: 100%;
    }

#moveList {
    flex: 1 1 auto;
    overflow: auto;
    width: 15em;
}
    #moveList table {
    width: 100%;
}

#moveList table tr td {
    width: 40%;
}


#controlList {
    max-width: 25em;
}

    #controlList .control {
        padding: 1px;
        border-top: 1px solid black;
        display: flex;
        flex-direction: row;
    }

    #controlList .control .description {
        flex-basis: 100%;
    }

    #controlList .control .btn {
        white-space: nowrap;
    }

