/**
 * Deco Pas Plus Games – minimal CSS
 * Tailwind utility classes are already present in your theme.
 * This file adds only non-Tailwind specifics.
 */

/* Sudoku table */
.sudoku-table {
    border-collapse: collapse;
    margin: 0 auto;
}

.sudoku-table td {
    padding: 0;
}

/* Spin animation for loading state (not always in Tailwind JIT) */
@keyframes dppg-spin {
    to { transform: rotate(360deg); }
}

.dppg-spin {
    animation: dppg-spin 0.8s linear infinite;
}

/* Utility: hidden (backup if Tailwind not loaded) */
.hidden {
    display: none !important;
}

/* Prevent game cards being clickable when disabled */
.dppg-game-card.cursor-not-allowed {
    pointer-events: none;
}
