/* /Pages/Chess.razor.rz.scp.css */
.chess-container[b-lm35k8fgxl] {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
}

.chess-header[b-lm35k8fgxl] {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.arcade-title[b-lm35k8fgxl] {
    font-size: 2.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin: 0;
    margin-bottom: 10px;
}

.status-panel[b-lm35k8fgxl] {
    display: flex;
    gap: 20px;
    align-items: center;
    font-size: 1.2rem;
    font-weight: bold;
    min-height: 30px;
}

.turn-indicator.white-turn[b-lm35k8fgxl] {
    color: #eee;
}

.turn-indicator.black-turn[b-lm35k8fgxl] {
    color: #999;
}

.game-over[b-lm35k8fgxl] {
    color: #ff3333;
    animation: blink-b-lm35k8fgxl 1s infinite;
}

.check-warning[b-lm35k8fgxl] {
    color: #ffaa00;
}

.controls[b-lm35k8fgxl] {
    margin-top: 15px;
    display: flex;
    gap: 20px;
    align-items: center;
    position: static;
    float: none;
    width: 100%;
    justify-content: center;
}

.arcade-btn[b-lm35k8fgxl] {
    background-color: #222;
    color: white;
    border: 2px solid #555;
    padding: 10px 20px;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.2s;
}

.arcade-btn:hover[b-lm35k8fgxl] {
    background-color: #444;
}

.ai-toggle[b-lm35k8fgxl] {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
}

.board-wrapper[b-lm35k8fgxl] {
    background-color: #444;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.chess-board[b-lm35k8fgxl] {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    grid-template-rows: repeat(8, 1fr);
    width: 80vmin;
    max-width: 600px;
    height: 80vmin;
    max-height: 600px;
    border: 2px solid #333;
}

.square[b-lm35k8fgxl] {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    cursor: pointer;
}

.light-square[b-lm35k8fgxl] {
    background-color: #f0d9b5;
}

.dark-square[b-lm35k8fgxl] {
    background-color: #b58863;
}

.chess-piece[b-lm35k8fgxl] {
    width: 80%;
    height: 80%;
    object-fit: contain;
    z-index: 10;
    filter: drop-shadow(0px 3px 2px rgba(0,0,0,0.4));
}

.selected[b-lm35k8fgxl] {
    background-color: rgba(106, 156, 92, 0.8) !important;
}

.valid-move[b-lm35k8fgxl] {
    /* Optional base styling for a valid move square */
}

.move-indicator[b-lm35k8fgxl] {
    position: absolute;
    width: 30%;
    height: 30%;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 50%;
    z-index: 5;
    pointer-events: none;
}

@keyframes blink-b-lm35k8fgxl {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}
/* /Pages/Connect4.razor.rz.scp.css */
.game-container-connect4[b-imjnsl0qa9] {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
    font-family: 'Press Start 2P', monospace; /* Assuming arcade font is available */
    outline: none;
    margin-top: 20px;
}

.header[b-imjnsl0qa9] {
    text-align: center;
    margin-bottom: 20px;
}

.title[b-imjnsl0qa9] {
    font-size: 3em;
    margin: 0 0 10px 0;
    color: #ffcc00;
    text-shadow: 2px 2px 4px #000000;
}

.status-box[b-imjnsl0qa9] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-size: 1.2em;
    background: rgba(0, 0, 0, 0.6);
    padding: 10px 20px;
    border-radius: 10px;
    border: 2px solid #ffffff;
}

.turn-indicator[b-imjnsl0qa9] {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    border: 2px solid white;
}

.win[b-imjnsl0qa9] {
    color: #00ff00;
    animation: blink-b-imjnsl0qa9 1s infinite;
}

.draw[b-imjnsl0qa9] {
    color: #ffaa00;
}

@keyframes blink-b-imjnsl0qa9 {
    0% { opacity: 1; }
    50% { opacity: 0; }
    100% { opacity: 1; }
}

.game-board-wrapper[b-imjnsl0qa9] {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: transparent;
}

.column-selectors[b-imjnsl0qa9] {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.column-selector[b-imjnsl0qa9] {
    width: 60px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    cursor: pointer;
}

.column-selector:hover .arrow-down[b-imjnsl0qa9] {
    border-top: 20px solid #ffffff;
}

.arrow-down[b-imjnsl0qa9] {
    width: 0; 
    height: 0; 
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 20px solid rgba(255, 255, 255, 0.3);
    transition: all 0.2s;
}

.connect4-board[b-imjnsl0qa9] {
    background-color: #0055ff;
    padding: 10px;
    border-radius: 15px;
    border: 4px solid #0033aa;
    box-shadow: 0 10px 20px rgba(0,0,0,0.5);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.board-row[b-imjnsl0qa9] {
    display: flex;
    gap: 10px;
}

.board-cell[b-imjnsl0qa9] {
    width: 60px;
    height: 60px;
    background-color: #0044cc;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.hole[b-imjnsl0qa9] {
    width: 50px;
    height: 50px;
    background-color: #111; /* Dark background to look like a hole */
    border-radius: 50%;
    box-shadow: inset 0 5px 10px rgba(0,0,0,0.8);
    position: relative;
    overflow: hidden;
}

.piece[b-imjnsl0qa9] {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    animation: dropIn-b-imjnsl0qa9 0.4s ease-in;
    box-shadow: inset 0 0 10px rgba(0,0,0,0.5), 0 2px 5px rgba(0,0,0,0.5);
}

@keyframes dropIn-b-imjnsl0qa9 {
    0% { transform: translateY(-400px); }
    60% { transform: translateY(20px); }
    80% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}

.player-1[b-imjnsl0qa9] {
    background: radial-gradient(circle at 30% 30%, #ff4d4d, #cc0000);
}

.player-2[b-imjnsl0qa9] {
    background: radial-gradient(circle at 30% 30%, #ffff66, #ffcc00);
}

.controls[b-imjnsl0qa9] {
    position: static;
    float: none;
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 10px;
    margin-bottom: 10px;
    gap: 10px;
    flex-wrap: wrap;
}

@media (max-width: 576px) {
    .connect4-board[b-imjnsl0qa9] {
        width: 100vw;
        padding: 5px;
        gap: 5px;
        box-sizing: border-box;
    }
    .board-row[b-imjnsl0qa9] {
        gap: 5px;
    }
    .board-cell[b-imjnsl0qa9] {
        width: calc((100vw - 40px) / 7);
        height: calc((100vw - 40px) / 7);
    }
    .hole[b-imjnsl0qa9] {
        width: 83%;
        height: 83%;
    }
    .column-selectors[b-imjnsl0qa9] {
        gap: 5px;
        width: 100vw;
        padding: 5px;
        box-sizing: border-box;
    }
    .column-selector[b-imjnsl0qa9] {
        width: calc((100vw - 40px) / 7);
    }
}
/* /Pages/Game2048.razor.rz.scp.css */
.game-container-2048[b-bxh5ch49o5] {
    display: flex;
    flex-direction: column;
    align-items: center;
    outline: none; /* remove focus outline */
    font-family: "Clear Sans", "Helvetica Neue", Arial, sans-serif;
    color: #776e65;
    margin-top: 20px;
}

.controls[b-bxh5ch49o5] {
    margin-bottom: 20px;
    display: flex;
    gap: 10px;
    justify-content: center;
    position: static;
    float: none;
    width: 100%;
}

button[b-bxh5ch49o5] {
    background-color: #8f7a66;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    border-radius: 3px;
    transition: background-color 0.2s;
}

button:hover[b-bxh5ch49o5] {
    background-color: #9f8b77;
}

.header[b-bxh5ch49o5] {
    display: flex;
    justify-content: space-between;
    width: 400px;
    max-width: 90vw;
    margin-bottom: 20px;
}

.title[b-bxh5ch49o5] {
    font-size: 4rem;
    font-weight: bold;
    margin: 0;
    color: white;
}

.score-container[b-bxh5ch49o5] {
    display: flex;
    gap: 5px;
}

.score-box[b-bxh5ch49o5] {
    background: #bbada0;
    padding: 5px 25px;
    border-radius: 3px;
    color: white;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.score-label[b-bxh5ch49o5] {
    font-size: 0.8rem;
    font-weight: bold;
    color: #eee4da;
    text-transform: uppercase;
}

.score-value[b-bxh5ch49o5] {
    font-size: 1.5rem;
    font-weight: bold;
}

.game-board-wrapper[b-bxh5ch49o5] {
    position: relative;
    width: 400px;
    height: 400px;
    max-width: 90vw;
    max-height: 90vw; /* Keep it square on mobile */
    background: #bbada0;
    border-radius: 6px;
    padding: 10px;
    touch-action: none; /* Prevent scrolling when swiping */
}

.grid-container[b-bxh5ch49o5] {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    gap: 10px;
}

.grid-row[b-bxh5ch49o5] {
    display: flex;
    flex: 1;
    gap: 10px;
}

.grid-cell[b-bxh5ch49o5] {
    flex: 1;
    background: rgba(238, 228, 218, 0.35);
    border-radius: 3px;
    position: relative;
}

.tile[b-bxh5ch49o5] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 3px;
    font-weight: bold;
    font-size: 2.5rem;
    z-index: 10;
    animation: appear-b-bxh5ch49o5 200ms ease 100ms;
    animation-fill-mode: backwards;
}

.tile-inner[b-bxh5ch49o5] {
    text-align: center;
}

/* Tile Colors */
.tile-2[b-bxh5ch49o5] { background: #eee4da; color: #776e65; }
.tile-4[b-bxh5ch49o5] { background: #ede0c8; color: #776e65; }
.tile-8[b-bxh5ch49o5] { background: #f2b179; color: #f9f6f2; }
.tile-16[b-bxh5ch49o5] { background: #f59563; color: #f9f6f2; }
.tile-32[b-bxh5ch49o5] { background: #f67c5f; color: #f9f6f2; }
.tile-64[b-bxh5ch49o5] { background: #f65e3b; color: #f9f6f2; }
.tile-128[b-bxh5ch49o5] { background: #edcf72; color: #f9f6f2; font-size: 2rem; box-shadow: 0 0 30px 10px rgba(243, 215, 116, 0.2381), inset 0 0 0 1px rgba(255, 255, 255, 0.14285); }
.tile-256[b-bxh5ch49o5] { background: #edcc61; color: #f9f6f2; font-size: 2rem; box-shadow: 0 0 30px 10px rgba(243, 215, 116, 0.31746), inset 0 0 0 1px rgba(255, 255, 255, 0.19047); }
.tile-512[b-bxh5ch49o5] { background: #edc850; color: #f9f6f2; font-size: 2rem; box-shadow: 0 0 30px 10px rgba(243, 215, 116, 0.39682), inset 0 0 0 1px rgba(255, 255, 255, 0.23809); }
.tile-1024[b-bxh5ch49o5] { background: #edc53f; color: #f9f6f2; font-size: 1.5rem; box-shadow: 0 0 30px 10px rgba(243, 215, 116, 0.47619), inset 0 0 0 1px rgba(255, 255, 255, 0.28571); }
.tile-2048[b-bxh5ch49o5] { background: #edc22e; color: #f9f6f2; font-size: 1.5rem; box-shadow: 0 0 30px 10px rgba(243, 215, 116, 0.55555), inset 0 0 0 1px rgba(255, 255, 255, 0.33333); }
.tile-super[b-bxh5ch49o5] { background: #3c3a32; color: #f9f6f2; font-size: 1.5rem; }

/* Mobile Adjustments */
@media (max-width: 500px) {
    .title[b-bxh5ch49o5] { font-size: 2rem; }
    .score-value[b-bxh5ch49o5] { font-size: 1.2rem; }
    .tile[b-bxh5ch49o5] { font-size: 1.5rem; }
    .tile-128[b-bxh5ch49o5], .tile-256[b-bxh5ch49o5], .tile-512[b-bxh5ch49o5] { font-size: 1.2rem; }
    .tile-1024[b-bxh5ch49o5], .tile-2048[b-bxh5ch49o5], .tile-super[b-bxh5ch49o5] { font-size: 1rem; }
}

/* Animations */
@keyframes appear-b-bxh5ch49o5 {
    0% { opacity: 0; transform: scale(0); }
    100% { opacity: 1; transform: scale(1); }
}

.game-message[b-bxh5ch49o5] {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(238, 228, 218, 0.73);
    z-index: 100;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    animation: fade-in-b-bxh5ch49o5 800ms ease;
}

.game-message p[b-bxh5ch49o5] {
    font-size: 4rem;
    font-weight: bold;
    color: #776e65;
    margin: 0 0 20px 0;
}

.game-won[b-bxh5ch49o5] {
    background: rgba(237, 194, 46, 0.5);
}

.game-won p[b-bxh5ch49o5] {
    color: #f9f6f2;
}

@keyframes fade-in-b-bxh5ch49o5 {
    0% { opacity: 0; }
    100% { opacity: 1; }
}
/* /Pages/Home.razor.rz.scp.css */
.white[b-x96zk1al1l] {
    color: white;
    text-shadow: -1px -1px 0 black, 1px -1px 0 black, 1px 1px 0 black, 1px 1px 0 black, 1px 1px 2px black, 0 0 1em blue, 0 0 0.2em black;
    text-align: center;
}

.home-container[b-x96zk1al1l] {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem 1rem;
}

.game-grid[b-x96zk1al1l] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    width: 100%;
    max-width: 1000px;
    margin-top: 2rem;
    justify-content: center;
}

.game-tile[b-x96zk1al1l] {
    background: rgba(10, 10, 30, 0.85);
    backdrop-filter: blur(5px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
    text-decoration: none;
    color: white;
    position: relative;
    overflow: hidden;
}

.game-tile[b-x96zk1al1l]::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at center, rgba(255,255,255,0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s;
}

.game-tile:hover[b-x96zk1al1l] {
    transform: translateY(-10px) scale(1.05);
    border-color: rgba(0, 200, 255, 0.6);
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.6), 0 0 25px rgba(0, 150, 255, 0.4);
    background: rgba(20, 20, 50, 0.95);
}

.game-tile:hover[b-x96zk1al1l]::before {
    opacity: 1;
}

.game-icon[b-x96zk1al1l] {
    width: 100px;
    height: 100px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.game-icon svg[b-x96zk1al1l] {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 8px 6px rgba(0,0,0,0.6));
    transition: transform 0.3s ease;
}

.game-tile:hover .game-icon svg[b-x96zk1al1l] {
    transform: scale(1.1) rotate(2deg);
}

.game-title[b-x96zk1al1l] {
    font-size: 1.2rem;
    font-weight: bold;
    text-shadow: 2px 2px 4px black;
    margin: 0;
    text-align: center;
    font-family: 'Press Start 2P', monospace, sans-serif;
    letter-spacing: 1px;
    z-index: 1;
}
/* /Pages/Pacman.razor.rz.scp.css */
.pacman-container[b-n05ekmypqe] {
    display: flex;
    flex-direction: column;
    align-items: center;
    outline: none; /* remove focus outline */
}

.pacman-board[b-n05ekmypqe] {
    background-color: black;
    border: 4px solid #1919A6;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(25, 25, 166, 0.5);
    touch-action: none; /* Prevent scrolling while playing on mobile */
    width: 100%;
    max-width: 90vw;
    height: auto;
    max-height: 75vh;
    aspect-ratio: 21 / 22;
}

.stats-container[b-n05ekmypqe] {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: calc(75vh * (21/22)); /* max-height * aspect ratio */
    margin-bottom: 10px;
    color: white;
    font-family: 'Press Start 2P', monospace; /* Assuming this font is available or fallback to monospace */
    font-size: 1.2rem;
    text-shadow: 1px 1px 0px black;
}

.controls[b-n05ekmypqe] {
    margin-bottom: 20px;
    display: flex;
    gap: 10px;
    justify-content: center;
}

button[b-n05ekmypqe] {
    background-color: #222;
    color: white;
    border: 2px solid #555;
    padding: 10px 20px;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.2s;
}

button:hover[b-n05ekmypqe] {
    background-color: #444;
}

.game-message[b-n05ekmypqe] {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    border: 2px solid yellow;
}

.game-message h2[b-n05ekmypqe] {
    margin-top: 0;
    color: yellow;
}

.blink[b-n05ekmypqe] {
    opacity: 0.5;
}

@media (max-width: 576px) {
    .pacman-board[b-n05ekmypqe] {
        max-width: 100vw;
        max-height: none;
        border: none;
        border-radius: 0;
    }
    .stats-container[b-n05ekmypqe] {
        max-width: 100vw;
        padding: 0 10px;
        box-sizing: border-box;
    }
    .pacman-container[b-n05ekmypqe] {
        width: 100%;
        margin: 0;
        padding: 0;
    }
}
/* /Pages/Platformer.razor.rz.scp.css */
.game-container-platformer[b-pnyjh751qu] {
    display: flex;
    flex-direction: column;
    align-items: center;
    outline: none; /* remove focus outline */
    font-family: "Clear Sans", "Helvetica Neue", Arial, sans-serif;
    color: white;
    margin-top: 20px;
    width: 100%;
    touch-action: none; /* Prevent scrolling during swipe controls */
}

.controls[b-pnyjh751qu] {
    margin-bottom: 10px;
    display: flex;
    gap: 10px;
    justify-content: center;
    position: static;
    float: none;
    width: 100%;
}

button[b-pnyjh751qu] {
    background-color: #8f7a66;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    border-radius: 3px;
    transition: background-color 0.2s;
}

button:hover[b-pnyjh751qu] {
    background-color: #9f8b77;
}

.header[b-pnyjh751qu] {
    display: flex;
    justify-content: center;
    width: 100%;
    max-width: 800px;
    margin-bottom: 10px;
}

.title[b-pnyjh751qu] {
    font-size: 3rem;
    font-weight: bold;
    margin: 0;
    color: white;
}

.svg-container[b-pnyjh751qu] {
    position: relative;
    width: 100%;
    max-width: 800px; /* Base width of the game */
    aspect-ratio: 800 / 600; /* Preserve aspect ratio */
    background-color: #222;
    border: 4px solid #444;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

.overlay-message[b-pnyjh751qu] {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    font-weight: bold;
    text-align: center;
    pointer-events: none;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

.game-over-text[b-pnyjh751qu] {
    color: red;
}

.game-won-text[b-pnyjh751qu] {
    color: gold;
}

.instructions[b-pnyjh751qu] {
    margin-top: 15px;
    font-size: 1.2rem;
    color: #ccc;
    text-align: center;
}
/* /Pages/SudokuGrid.razor.rz.scp.css */
.sudoku-grid[b-wu6p9ckg5v] {
    /*border-collapse: collapse;*/
    border: dashed 1px #000;
    margin: 1vw auto;
    width: fit-content;
    aspect-ratio: 1/1;
    background-color: #2c2f33; /* Subtle dark background */
}

    .sudoku-grid td[b-wu6p9ckg5v] {
        width: 3vw;
        aspect-ratio: 1 /1; /* Force a square aspect ratio */
        text-align: center;
        padding: 0;
    }

    .sudoku-grid input[type="text"][b-wu6p9ckg5v] {
        border: 1px solid black; /* Grid border */
        width: 3vw;
        aspect-ratio: 1 /1; /* Force a square aspect ratio */
        font-size: 2vw;
        text-align: center;
        color: #fff; /* White text */
        font-weight: bold;
        box-sizing: border-box;
    }



button[b-wu6p9ckg5v] {
    margin: 20px;
    padding: 10px 20px;
    font-size: 16px;
    background-color: #444;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

    button:hover[b-wu6p9ckg5v] {
        background-color: #555;
    }

.sudoku-solved[b-wu6p9ckg5v] {
    font-size: 3rem;
    background-color: #00Ff00;
    color: #fff;
    padding: 1vw;
    border-radius: 4px;
    margin: 20px;
    text-align: center;
    /* Text Shadow Property */
    text-shadow: -1px -1px 0 black, 1px -1px 0 black, 1px 1px 0 black, 1px 1px 0 black, 1px 1px 2px black, 0 0 1em blue, 0 0 0.2em black;
}

.sudoku-unsolved[b-wu6p9ckg5v] {
    font-size: 3rem;
    background-color: #CC0000;
    color: #fff;
    padding: 1vw;
    border-radius: 4px;
    margin: 20px;
    text-align: center;
    /* Text Shadow Property */
    text-shadow: -1px -1px 0 black, 1px -1px 0 black, 1px 1px 0 black, 1px 1px 0 black, 1px 1px 2px black, 0 0 1em blue, 0 0 0.2em black;
}

.invalid-cell[b-wu6p9ckg5v] {
    background-color: red;
    color: white;
    border: 5px solid red;
}

.green[b-wu6p9ckg5v] {
    background-color: green;
    background-color: #3c3f44; /* Darker input background */
}

.green:focus[b-wu6p9ckg5v] {
    background-color: #565a60; /* Slightly lighter for focus */
}


form-select[b-wu6p9ckg5v] {
    padding: .5rem 1rem;
    font-size: .75rem;
    background-color: #444;
    color: white;
    border: none;
    border-radius: .2rem;
    cursor: pointer;
}

    form-select:hover[b-wu6p9ckg5v] {
        background-color: #555;
    }

.controls[b-wu6p9ckg5v] {
    position: absolute;
    float: left;
    top: 10px;
    left: 10px;
}

@media (max-width: 992px) {
    .sudoku-grid[b-wu6p9ckg5v] {
        width: 100%;
        max-width: 100vw;
        margin: 0 auto;
        box-sizing: border-box;
    }

    .sudoku-grid td[b-wu6p9ckg5v] {
        width: calc(100vw / 9 - 2px);
    }

    .sudoku-grid input[type="text"][b-wu6p9ckg5v] {
        width: calc(100vw / 9 - 2px);
        font-size: 5vw;
    }

    .controls[b-wu6p9ckg5v] {
        position: static;
        float: none;
        display: flex;
        justify-content: center;
        margin-top: 10px;
        margin-bottom: 10px;
        width: 100%;
    }
}
