﻿.game-button {
    color: black !important;
    background-color: #F8D925 !important;
}

    /* Hover */
    .game-button:hover {
        color: black !important;
        background-color: #F8D925 !important;
    }

    /* Focus */
    .game-button:focus,
    .game-button:focus-visible {
        color: black !important;
        background-color: #F8D925 !important;
    }

    /* Pressed / active */
    .game-button:active {
        color: black !important;
        background-color: #F8D925 !important;
    }

    /* Disabled */
    .game-button:disabled {
        color: black !important;
        background-color: #819C9B !important;
        opacity: 1 !important;
    }

    /* MudBlazor disabled state */
    .game-button.mud-button-root:disabled {
        color: black !important;
        background-color: #819C9B !important;
        opacity: 1 !important;
    }
