/* Custom styles for better game feel */
.square {
    transition: all 0.2s ease-in-out;
}

.square.winning {
    transform: scale(1.1);
    background-color: #10B981; /* Corresponds to Tailwind's emerald-500 */
    color: white;
}

.spinner {
    border-top-color: transparent;
    border-right-color: transparent;
}
