/* 7x7 Puzzle Specific Styles - Match the main game exactly */

/* 7x7 Board Specific Styling - Match the main game layout */
.board--7x7 {
    width: 30vw;
    height: 30vw;
    min-width: 300px;
    min-height: 300px;
    margin: 10px auto;
    border: 2px solid steelblue;
    background: rgb(235, 239, 245);
    box-sizing: border-box;
    border-radius: 5px;
    font-size: 40px;
    color: steelblue;
}

/* Cells for 7x7 - Match the main game styling */
.board--7x7 .cell {
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    border: 1px solid steelblue;
    box-shadow: 1px 1px 0 0 rgba(0, 0, 0, 0.2);
    margin: 2px;
    border-radius: 5px;
    transition: all 0.1s ease-in;
    position: absolute;
    background: white;
    font-size: 40px;
    color: steelblue;
}

.board--7x7 .cell--can-move {
    cursor: pointer;
}

.board--7x7 .cell:hover {
    transform: scale(1.02);
    box-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

/* Mobile optimizations for 7x7 */
@media (min-width: 768px) {
    .board--7x7 {
        min-width: 480px;
        min-height: 480px;
        font-size: 60px;
    }
}

@media (max-width: 480px) {
    .board--7x7 {
        width: 280px;
        height: 280px;
        min-width: 280px;
        min-height: 280px;
    }
    
    .board--7x7 .cell {
        font-size: 16px;
    }
}


