/* 20260614 CL - Host-specific overrides only. The shared game design system now lives in
   _content/WealthChallenge.Ui/wc-game.css (referenced before this file in index.html),
   so game styling is edited in ONE place and applies to both Server and Wasm. */

/* WASM-only: arcade prototype palette retained so DesignPrototype.razor's .panel-mint still renders. */
:root {
    --wc-mint-panel: #e0f2e9;
    --wc-mint-border: #b2d8c3;
    --wc-text-dark: #1e293b;
}
.panel-mint {
    background-color: var(--wc-mint-panel);
    color: var(--wc-text-dark);
    border: 1px solid var(--wc-mint-border);
    border-radius: 8px;
    padding: 15px;
}
