:root {
    --bg0: #0b1220;
    --bg1: #0f1b2d;
    --card: rgba(255,255,255,.06);
    --card2: rgba(255,255,255,.10);
    --text: #e9eefc;
    --muted: rgba(233,238,252,.65);
    --accent: #7c5cff; /* purple accent */
    --good: #ffd84d; /* yellow-ish number */
    --shadow: 0 18px 50px rgba(0,0,0,.45);
    --radius: 20px;
    --separator: rgba(255,255,255,.1);
    --cell-bg: rgba(0,0,0,.25)
}

/* Global base */
html, body {
    height: 100%;
    margin: 0;
    font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Apple Color Emoji","Segoe UI Emoji";
    color: var(--text);
}

body {
    display: flex;
    flex-direction: column; /* prevent horizontal shrink */
    min-height: 100vh;
    width: 100vw; /* ensure full viewport width */
    align-items: center;
    justify-content: center;
    padding: 32px 16px;
    background: linear-gradient(90deg, #06102a 0%, #020a1b 50%, #06102a 100%), linear-gradient(180deg, #0c1422 0%, #0e192a 100%);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 0;
    border-radius: 14px;
    padding: 12px 18px;
    font-weight: 650;
    cursor: pointer;
    background: linear-gradient(135deg, var(--accent), #4da3ff);
    box-shadow: 0 14px 35px rgba(124,92,255,.25);
    max-width: 100px;
    transform: translateY(0);
    transition: transform .12s ease, box-shadow .12s ease, filter .12s ease;
}

.btn:active {
    transform: translateY(1px);
    box-shadow: 0 10px 25px rgba(124,92,255,.20);
}

.btn:hover {
    transform: translateY(-1px);
    filter: brightness(1.03);
    box-shadow: 0 18px 45px rgba(124,92,255,.30);
}

.card {
    display: block;
    width: fit-content;
    min-height: 400px;
    background: linear-gradient(180deg, var(--card), rgba(255,255,255,.03));
    border: 1px solid rgba(255,255,255,.10);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 28px 26px;
    backdrop-filter: blur(10px);
    text-align: center;
}

.cell-canvas {
    display: block;
    image-rendering: pixelated;
    image-rendering: crisp-edges;
    margin: 20px auto 20px;
}

.divider {
    height: 1px;
    background: rgba(255,255,255,.10);
    margin: 8px 0px 8px 0px;
}

.entry-stack {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

.home-entry-stack {
    box-sizing: border-box;
    height: calc(100vh - 64px);
    justify-content: flex-start;
    padding-top: 320px;
}

.hint { 
    margin-top: 16px;
    color: rgba(233,238,252,.55);
    font-size: 13px;
}

.label {
    color: var(--muted);
    font-size: 14px;
    letter-spacing: .35px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.lbl {
    color: white;
    font-size: 12px;
    font-weight: 650;
    margin: 0 auto 18px;
}

.lbl-green {
    color: #00bb00;
}

.lbl-orange {
    color: #ff9900;
}

.lbl-yellow {
    color: #80bb00;
}

.menu-back-slot {
    display: flex;
    justify-content: flex-start;
    padding: 3px 0 0 0;
}

.play-button svg {
    margin: 0 0 0 2px;
}

.playback-controls {
    justify-content: center;
    gap: 8px;
    margin: 0 auto;
    padding-top: 15px;
}

.playback-controls .btn {
    max-width: 120px;
    padding: 8px 14px;
    font-size: 12px;
}

.plot-card {
    position: relative;
    flex: 1 1 0;
    max-width: 300px;
    --plot-badge-gap: 8px;
    --plot-canvas-margin: 0;
}

.plot-card > .saturation-badge {
    display: block;
    width: fit-content;
    margin: 0 auto var(--plot-badge-gap);
}

.plot-card > .saturation-badges-plot {
    width: fit-content;
    margin: 0 auto var(--plot-badge-gap);
}

.plot-canvas {
    border-radius: 2px;
    box-sizing: border-box;
    display: block;
    margin: var(--plot-canvas-margin);
    flex: 1;
    height: 100px;
    width: 100%;
}

.plot-label {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    font-size: 11px;
    font-weight: 650;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
}

.plot-label-grazers {
    color: var(--plot-series-color, #80bb00);
}


.plot-label-plants {
    color: var(--plot-series-color, #00bb00);
}

.plot-row {
    display: flex;
    gap: 8px;
    margin: 0;
}

@media (max-width: 680px) {
    .plot-row {
        width: 100%;
    }
}

.plot-section-hidden {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
}

.saturation-badge {
    min-width: 1ch;
    text-align: center;
    border: 1px solid #ffffff1f;
    border-radius: 6px;
    padding: 2px 6px;
    font-size: 9px;
    font-weight: 700;
    line-height: 1;
    background: #0000002e;
    font-variant-numeric: tabular-nums;
}

.saturation-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    justify-content: center;
    margin: 4px;
}

.service-button {
    width: 48px;
    height: 48px;
    padding: 0;
    border: 1px solid rgba(129, 194, 255, 0.25);
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(233, 238, 252, 0.5);
    background: rgba(255, 255, 255, 0.15);
    cursor: pointer;
    transition: background .15s ease, transform .12s ease, color .15s ease;
}

.service-button svg {
    width: 24px;
    height: 24px;
    display: block;
}

.service-button:hover {
    color: #fff;
}

.service-button:focus-visible {
    outline: 2px solid rgba(124, 92, 255, 0.85);
    outline-offset: 2px;
}

.service-button-small {
    width: 30px;
    height: 30px;
    border-radius: 7px;
}

.service-button-small svg {
    width: 16px;
    height: 16px;
}

.service-button-medium {
    width: 48px;
    height: 48px;
    border-radius: 10px;
}

.service-button-medium svg {
    width: 24px;
    height: 24px;
}

.service-button-large {
    width: 58px;
    height: 58px;
    border-radius: 14px;
}

.service-button-large svg {
    width: 30px;
    height: 30px;
}

.start-btn {
    margin: 12px 0px 0px 0px;
}

.stats-bar {
    gap: 8px;
    display: flex;
    justify-content: center;
    color: white;
    font-size: 12px;
    font-weight: 650;
}

.stats-item {
    align-items: baseline;
    display: inline-flex;
    gap: 4px;
}

.stats-item-grazers {
    align-items: center;
    gap: 6px;
}

.stats-label {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.95);
}

.stats-value {
    display: inline-block;
    min-width: 6ch;
    text-align: right;
    font-variant-numeric: tabular-nums;
}

.title{
  font-size: 34px;
  letter-spacing: .4px;
  color: rgba(150,155,170);
  font-weight: 600;
  align-self:center;
  margin-bottom: 10px;
}

.value {
    font-size: 92px;
    line-height: 1;
    margin: 8px 0 18px;
    font-weight: 750;
    color: rgb(var(--dynamic-text-color, var(--good-rgb, 255,216,77)));
    text-shadow: 0 10px 30px rgba(255,216,77,.10);
    min-height: 92px;
}

/*Nice*/

.plot-card > .saturation-badge + .plot-canvas {
    margin-top: 0;
}

.plot-canvas-grazers {
    --plot-series-color: #80bb00;
    --plot-grid-color: #80bb0022;
    --plot-series-colors: rgb(128, 255, 0)|rgb(219, 255, 0)|rgb(255, 146, 0)|rgb(255, 0, 36)|rgb(255, 0, 219)|rgb(109, 0, 255)|rgb(0, 73, 219)|rgb(0, 255, 128);
    border: 1px solid #ffffff22;
}

.plot-canvas-plants {
    --plot-series-color: #00bb00;
    --plot-grid-color: #00bb0022;
    border: 1px solid #ffffff22;
}

.saturation-badge-0 {
    color: rgb(128, 255, 0);
}

.saturation-badge-1 {
    color: rgb(219, 255, 0);
}

.saturation-badge-2 {
    color: rgb(255, 146, 0);
}

.saturation-badge-3 {
    color: rgb(255, 0, 36);
}

.saturation-badge-4 {
    color: rgb(255, 0, 219);
}

.saturation-badge-5 {
    color: rgb(109, 0, 255);
}

.saturation-badge-6 {
    color: rgb(0, 73, 219);
}

.saturation-badge-7 {
    color: rgb(0, 255, 128);
}

/* ── Entry Screen ── */
.demo-bg-canvas {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    z-index: 0;
    pointer-events: none;
}

.entry-card {
    position: relative;
    z-index: 1;
    overflow: hidden;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 16px 32px 32px 32px;
    width: 360px;
    background: rgba(28, 37, 56, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    backdrop-filter: blur(5px);
}

.menu-card {
    width: 360px;
    min-height: 0;
    height: auto;
    justify-content: flex-start;
}

.menu-header {
    width: 280px;
    display: grid;
    grid-template-columns: 48px 1fr 48px;
    align-items: center;
    margin-bottom: 12px;
}

.menu-header-spacer {
    width: 48px;
    height: 48px;
}

.menu-header .menu-title {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    height: auto;
    margin: 0;
    text-align: center;
    padding: 6px 0;
}

.menu-logout-slot {
    display: flex;
    justify-content: flex-end;
    padding: 3px 0 0 0;
}

.menu-controls {
    width: 100%;
    margin: 10px 0 0;
}

.menu-form {
    width: 100%;
}

.menu-form .login-signin-btn,
.menu-form .secondary-button {
    width: 100%;
}

.results-card {
    min-height: auto;
    justify-content: flex-start;
}

.results-list {
    width: 100%;
    list-style: none;
    margin: 12px 0 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.results-list li {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: rgba(229, 231, 235, 0.85);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 4px;
}

.entry-title {
    width: 100%;
    font-size: 40px;
    font-weight: 610;
    line-height: 1.1;
    text-align: center;
    color: rgba(229, 231, 235, 0.84);
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.8);
    margin: 0;
}

.entry-actions {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.entry-play-btn,
.entry-login-btn {
    width: 100%;
    height: 50px;
    border-radius: 12px;
    cursor: pointer;
    border: 1px solid transparent;
    font-size: 16px;
    font-weight: 760;
    line-height: 1;
    transition: filter .12s ease, transform .1s ease, background .15s ease;
}

.entry-play-btn {
    color: #fff;
    background: linear-gradient(90deg, rgba(121, 96, 255, 0.9) 0%, rgba(81, 157, 255, 0.9) 100%);
    box-shadow: 0 8px 60px rgba(124, 77, 255, 0.15), 0 8px 24px rgba(124, 77, 255, 0.25);
}

.entry-play-btn:hover,
.entry-play-btn:focus-visible {
    filter: brightness(1.08);
    transform: translateY(-1px);
}

.entry-login-btn {
    color: rgba(255, 255, 255, 0.8);
    background: rgba(50, 75, 100, 0.4);
    border-color: rgba(129, 194, 255, 0.25);
}

.entry-login-btn:hover,
.entry-login-btn:focus-visible {
    background: rgba(129, 194, 255, 0.18);
    transform: translateY(-1px);
}

/* ── Figma Login Card ── */
.login-card {
    position: relative;
    z-index: 1;
    overflow: hidden;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 16px 32px 32px 32px;
    width: 360px;
    background: rgba(28, 37, 56, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    backdrop-filter: blur(5px);
}

.login-title {
    width: 280px;
    font-size: 24px;
    font-weight: 590;
    height: 50px;
    text-align: center;
    color: rgba(229, 231, 235, 0.75);
    background: rgba(28, 37, 56, 0.00);
    margin: 0 auto;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
    border-radius: 10px;
    padding: 6px 12px;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.8);
}

.login-controls {
    width: 280px;

    position: relative;
    z-index: 1;
    margin-top: 10px;
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 280px;
}

.login-input-wrap {
    width: 280px;
}

.login-input {
    box-sizing: border-box;
    display: flex;
    align-items: center;
    padding: 6px 10px;
    width: 280px;
    height: 50px;
    background: rgba(12, 21, 36, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 10px;
    font-style: italic;
    font-weight: 276;
    font-size: 14px;
    backdrop-filter: blur(3px);
    color: rgba(255, 255, 255, 0.25);
}

.login-input::placeholder {
    color: rgba(255, 255, 255, 0.25);
    font-style: italic;
}

.login-input:focus {
    outline: none;
    border-color: rgba(124, 92, 255, 0.7);
}

.login-signin-btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 280px;
    height: 50px;
    background: linear-gradient(90deg, rgba(121, 96, 255, 0.6) 0%, rgba(81, 157, 255, 0.6) 100%);
    box-shadow: 0px 8px 60px rgba(124, 77, 255, 0.15), 0px 8px 24px rgba(124, 77, 255, 0.25);
    border-radius: 12px;
    border: 0px solid rgba(255, 255, 255, 0.25);
    font-weight: 860;
    font-size: 16px;
    color: #FFFFFF;
    backdrop-filter: blur(3px);
    cursor: pointer;
    transition: filter .12s ease, transform .1s ease;
}

.login-signin-btn:hover {
    filter: brightness(1.08);
    transform: translateY(-1px);
}

.login-register-zone {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: 280px;
    height: 50px;
}

.wrap-10 {
    margin: 10px;
}

.secondary-button {
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
    background: rgba(50, 75, 100, 0.4);
    border: 1px solid rgba(129, 194, 255, 0.25);
    border-radius: 10px;
    font-weight: 590;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(3px);
    cursor: pointer;
    transition: background .15s ease;
}

.login-register-btn {
    flex: 1;
}

.login-register-btn:hover {
    background: rgba(129, 194, 255, 0.18);
}

.login-google-btn {
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    padding: 8px 9px;
    background: rgba(50, 75, 100, 0.4);
    border: 1px solid rgba(129, 194, 255, 0.25);
    backdrop-filter: blur(3px);
    border-radius: 10px;
    cursor: pointer;
    transition: background .15s ease;
}

.login-google-btn:hover {
    background: rgba(129, 194, 255, 0.18);
}

/* ── end Login Card ── */

.card-guest {
    position: relative;
    width: 400px;
    height: 480px;
    min-height: 320px;
    padding: 0;
    overflow: hidden;
    background: rgba(24, 33, 48, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(2.5px);
}

.card-guest-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    border-radius: inherit;
}

.card-guest-content {
    position: relative;
    z-index: 1;
    min-height: 480px;
    width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: 26px;
}

.card-guest-content .title {
    margin: 4px 0 0;
    font-size: 36px;
    line-height: 43px;
    font-weight: 590;
    letter-spacing: 0;
    color: rgba(229, 231, 235, 0.8);
    text-align: left;
}

.card-guest-spacer {
    flex: 1;
}

.auth-card {
    width: 400px;
    min-height: auto;
    text-align: left;
}

.auth-card .title {
    margin: 4px 0 16px;
    font-size: 34px;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.auth-label {
    color: var(--muted);
    font-size: 12px;
    font-weight: 600;
}

.auth-input {
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 10px;
    background: rgba(12, 20, 35, .5);
    color: var(--text);
    padding: 10px 12px;
    font-size: 14px;
}

.auth-input:focus {
    outline: none;
    border-color: rgba(124,92,255,.5);
    box-shadow: 0 0 0 2px rgba(124,92,255,.2);
}

.auth-submit {
    margin-top: 10px;
    max-width: none;
    width: 100%;
}

.auth-divider {
    height: 1px;
    background: var(--separator);
    margin: 18px 0 14px;
}

.auth-google-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 10px 16px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
    background: var(--card2);
    border: 1px solid rgba(255, 255, 255, .12);
    cursor: pointer;
    transition: background .15s ease, transform .1s ease;
}

.auth-google-btn:hover {
    background: rgba(255,255,255,.15);
    transform: translateY(-1px);
}

.auth-switch {
    margin: 16px 0 0;
    color: var(--muted);
    font-size: 13px;
    text-align: center;
}

.auth-switch a {
    color: #81c2ff;
    text-decoration: none;
}

.auth-switch a:hover {
    text-decoration: underline;
}

.auth-error {
    background: rgba(180, 38, 38, .25);
    border: 1px solid rgba(255, 99, 99, .35);
    color: #ffd2d2;
    border-radius: 10px;
    padding: 8px 10px;
    margin-bottom: 12px;
    font-size: 13px;
}

/* Keep existing Blazor defaults (optional) */
a, .btn-link { color: #006bb7; }
.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}
.content { padding-top: 1.1rem; }
h1:focus { outline: none; }
.valid.modified:not([type=checkbox]) { outline: 1px solid #26b050; }
.invalid { outline: 1px solid #e51620; }
.validation-message { color: #e51620; }
.blazor-error-boundary {
  background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNDkiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIG92ZXJmbG93PSJoaWRkZW4iPjxkZWZzPjxjbGlwUGF0aCBpZD0iY2xpcDAiPjxyZWN0IHg9IjIzNSIgeT0iNTEiIHdpZHRoPSI1NiIgaGVpZ2h0PSI0OSIvPjwvY2xpcFBhdGg+PC9kZWZzPjxnIGNsaXAtcGF0aD0idXJsKCNjbGlwMCkiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC0yMzUgLTUxKSI+PHBhdGggZD0iTTI2My41MDYgNTFDMjY0LjcxNyA1MSAyNjUuODEzIDUxLjQ4MzcgMjY2LjYwNiA1Mi4yNjU4TDI2Ny4wNTIgNTIuNzk4NyAyNjcuNTM5IDUzLjYyODMgMjkwLjE4NSA5Mi4xODMxIDI5MC41NDUgOTIuNzk1IDI5MC42NTYgOTIuOTk2QzI5MC44NzcgOTMuNTEzIDI5MSA5NC4wODE1IDI5MSA5NC42NzgyIDI5MSA5Ny4wNjUxIDI4OS4wMzggOTkgMjg2LjYxNyA5OUwyNDAuMzgzIDk5QzIzNy45NjMgOTkgMjM2IDk3LjA2NTEgMjM2IDk0LjY3ODIgMjM2IDk0LjM3OTkgMjM2LjAzMSA5NC4wODg2IDIzNi4wODkgOTMuODA3MkwyMzYuMzM4IDkzLjAxNjIgMjM2Ljg1OCA5Mi4xMzE0IDI1OS40NzMgNTMuNjI5NCAyNTkuOTYxIDUyLjc5ODUgMjYwLjQwNyA1Mi4yNjU4QzI2MS4yIDUxLjQ4MzcgMjYyLjI5NiA1MSAyNjMuNTA2IDUxWk0yNjMuNTg2IDY2LjAxODNDMjYwLjczNyA2Ni4wMTgzIDI1OS4zMTMgNjcuMTI0NSAyNTkuMzEzIDY5LjMzNyAyNTkuMzEzIDY5LjYxMDIgMjU5LjMzMiA2OS44NjA4IDI1OS4zNzEgNzAuMDg4N0wyNjEuNzk1IDg0LjAxNjEgMjY1LjM4IDg0LjAxNjEgMjY3LjgyMSA2OS43NDc1QzI2Ny44NiA2OS43MzA5IDI2Ny44NzkgNjkuNTg3NyAyNjcuODc5IDY5LjMxNzkgMjY3Ljg3OSA2Ny4xMTgyIDI2Ni40NDggNjYuMDE4MyAyNjMuNTg2IDY2LjAxODNaTTI2My41NzYgODYuMDU0N0MyNjEuMDQ5IDg2LjA1NDcgMjU5Ljc4NiA4Ny4zMDA1IDI1OS43ODYgODkuNzkyMSAyNTkuNzg2IDkyLjI4MzcgMjYxLjA0OSA5My41Mjk1IDI2My41NzYgOTMuNTI5NSAyNjYuMTE2IDkzLjUyOTUgMjY3LjM4NyA5Mi4yODM3IDI2Ny4zODcgODkuNzkyMSAyNjcuMzg3IDg3LjMwMDUgMjY2LjExNiA4Ni4wNTQ3IDI2My41NzYgODYuMDU0N1oiIGZpbGw9IiNGRkU1MDAiIGZpbGwtcnVsZT0iZXZlbm9kZCIvPjwvZz48L3N2Zz4=) no-repeat 1rem/1.8rem, #b32121;
  padding: 1rem 1rem 1rem 3.7rem;
  color: white;
}
.blazor-error-boundary::after { content: "An error has occurred." }

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}
.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}

.badge-xxl {
    font-size: 160px;
    line-height: 1;
    padding: 0.25em 0.4em;
    border-radius: 0.35rem;
    display: inline-block;
    /* Use CSS variable for the red channel */
    color: rgb(var(--label-color, 128, 0, 0));
}

.badge-xl {
    font-size: 80px;
    line-height: 1;
    padding: 0.125em 0.2em;
    border-radius: 0.35rem;
    display: inline-block;
    /* Use CSS variable for the red channel */
    color: rgb(var(--label-color, 128, 128, 200));
}


.random-number-container {
    min-height: 250px;
}
