/* Match button widths in Chute controls */
/* Match button widths in Chute controls */
#reset-chute-board, #undo-chute-move, .view-results-btn {
    min-width: 140px;
    width: 100%;
    max-width: 220px;
    box-sizing: border-box;
}
.controls {
    gap: 1vh;
    justify-content: center;
    width: 100%;
    display: flex;
}
#chute-message {
    min-height: 2.5vh;
    text-align: center;
    font-size: 2vh;
    margin: 1.5vh 0 0.5vh 0;
    color: #007bff;
    font-weight: 500;
    transition: color 0.2s;
}
#chute-message.error {
    color: #d32f2f;
}
/* Chute uses tumbled styles for board and cells */

/* Chute board layout for 5x3 grid, styled exactly like Tumbled */
.board {
    display: grid;
    gap: 0.5vh;
    height: min(68vw, 36vh);
    aspect-ratio: 3 / 5;
    margin: 0 auto;
    padding: 0.5vh;
    background: #e8e8e8;
    border-radius: 1vh;
    border: 0.2vh solid #d8d8d8;
    box-shadow: 0 0.2vh 1vh rgba(0,0,0,0.07);
    box-sizing: border-box;
    grid-template-rows: repeat(5, 1fr);
    grid-template-columns: repeat(3, 1fr);
}
.board-row {
    display: contents;
}
.cell {
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.vh;
    font-weight: bold;
    border-radius: 0.5vh;
    border: 0.2vh solid #d8d8d8;
    cursor: pointer;
    user-select: none;
    transition: all 0.2s;
    aspect-ratio: 1 / 1;
}
.start-word-row {
    display: flex;
    justify-content: center;
    margin-top: 3vh;
    gap: 1.2vh;
}
.start-word-cell {
    width: 7.5vh;
    height: 7.5vh;
    background: #f5f5f5;
    border: 0.3vh solid #007bff;
    border-radius: 1vh;
    font-size: 3vh;
    font-weight: bold;
    color: #222;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0.2vh 0.8vh rgba(0,0,0,0.07);
    user-select: none;
}
.chute-draggable {
    cursor: grab;
    transition: box-shadow 0.2s;
}
.chute-draggable:active {
    cursor: grabbing;
    box-shadow: 0 0 0 2px #007bff;
    transform: scale(1.18);
    background: #f5f5f5;
    border: 0.3vh solid #007bff;
    border-radius: 1vh;
    color: #222;
    z-index: 10;
}
.chute-drop-target {
    background: #e3f2fd;
    border-color: #1976d2;
}
