/* /Components/ExerciseTimer.razor.rz.scp.css */
.exercise-timer[b-kq25dm3i4a] {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    background: #f1f5f9;
    border-radius: 999px;
    font-size: 1.25rem;
    font-weight: 700;
    color: #475569;
    box-shadow: inset 0 2px 4px 0 rgb(0 0 0 / 0.05);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.exercise-timer.running[b-kq25dm3i4a] {
    color: #3b82f6;
    background: #eff6ff;
}

.exercise-timer.finished[b-kq25dm3i4a] {
    color: #10b981;
    background: #ecfdf5;
}

.time-display[b-kq25dm3i4a] {
    font-family: monospace;
    letter-spacing: 1px;
}
/* /Components/InteractiveFormsSudoku.razor.rz.scp.css */
.shapes-legend[b-1v0phkkdj8] {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    color: var(--accent, #4A90E2);
    font-weight: 700;
}

.interactive-sudoku-container[b-1v0phkkdj8] {
    display: flex;
    justify-content: center;
}

.sudoku-interactive[b-1v0phkkdj8] {
    border-collapse: collapse;
    margin: 0 auto;
    max-width: 100%;
    border: 3px solid #1A365D; /* Thick outer border */
}

.sudoku-cell[b-1v0phkkdj8] {
    position: relative; /* Essential for wheel absolute positioning */
    width: 60px;
    height: 60px;
    text-align: center;
    vertical-align: middle;
    font-size: 1.5rem;
    font-weight: 700;
    border: 1px solid #94a3b8; /* Stronger inner borders */
    cursor: default;
    user-select: none;
    transition: background-color 0.15s;
    aspect-ratio: 1/1;
}

.cell-fixed[b-1v0phkkdj8] {
    background-color: #f8fafc;
    color: #0f172a;
    font-weight: 800;
}

.cell-playable[b-1v0phkkdj8] {
    background-color: white;
    color: var(--accent, #4A90E2);
    cursor: pointer;
}

.cell-playable:hover[b-1v0phkkdj8] {
    background-color: #f0f9ff;
}

.cell-error[b-1v0phkkdj8] {
    background-color: #fef2f2 !important;
    animation: shake-b-1v0phkkdj8 0.3s ease-in-out;
}

/* Thick block borders */
.border-top-thick[b-1v0phkkdj8]    { border-top:    3px solid #1A365D !important; }
.border-left-thick[b-1v0phkkdj8]   { border-left:   3px solid #1A365D !important; }
.border-bottom-thick[b-1v0phkkdj8] { border-bottom: 3px solid #1A365D !important; }
.border-right-thick[b-1v0phkkdj8]  { border-right:  3px solid #1A365D !important; }

/* Radial Menu (Wheel) */
.picker-backdrop[b-1v0phkkdj8] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10;
}

.symbol-wheel[b-1v0phkkdj8] {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    z-index: 20;
}

.wheel-btn[b-1v0phkkdj8] {
    position: absolute;
    width: 38px;
    height: 38px;
    margin: -19px 0 0 -19px; /* Center perfectly */
    border-radius: 50%;
    background: white;
    border: 2px solid var(--accent, #4a90e2);
    color: var(--accent, #4a90e2);
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    transition: background-color 0.2s, color 0.2s;
    padding: 0;
}

.wheel-btn:hover[b-1v0phkkdj8] {
    background: var(--accent, #4a90e2);
    color: white;
    z-index: 21;
}

.wheel-clear[b-1v0phkkdj8] {
    border-color: #ef4444;
    color: #ef4444;
}

.wheel-clear:hover[b-1v0phkkdj8] {
    background: #ef4444;
    color: white;
}

/* Game actions */
.game-actions[b-1v0phkkdj8] {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    margin-top: 1.5rem;
}

.game-actions .btn[b-1v0phkkdj8] {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: transform 0.1s, opacity 0.2s, background-color 0.2s;
    font-family: var(--font-ui);
}

.game-actions .btn:active[b-1v0phkkdj8] {
    transform: scale(0.98);
}

.game-actions .btn-primary[b-1v0phkkdj8] {
    background-color: var(--accent, #4a90e2);
    color: white;
    box-shadow: 0 4px 14px rgba(74, 144, 226, 0.2);
}

.game-actions .btn-primary:hover[b-1v0phkkdj8] {
    background-color: var(--accent-hover, #357abd);
}

.game-actions .btn-outline[b-1v0phkkdj8] {
    background-color: #f1f5f9;
    color: var(--text-primary, #1a365d);
    border: 1.5px solid #e2e8f0;
}

.game-actions .btn-outline:hover[b-1v0phkkdj8] {
    background-color: #e2e8f0;
    border-color: #cbd5e1;
}

/* Result messages */
.result-message[b-1v0phkkdj8] {
    text-align: center;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-weight: 700;
    margin-top: 1rem;
}

.result-success[b-1v0phkkdj8] {
    background-color: #ecfdf5;
    color: #065f46;
    border: 1px solid #10b981;
}

.result-error[b-1v0phkkdj8] {
    background-color: #fef2f2;
    color: #991b1b;
    border: 1px solid #ef4444;
}

@keyframes shake-b-1v0phkkdj8 {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-4px); }
    75% { transform: translateX(4px); }
}

/* Responsive */
@media (max-width: 600px) {
    .sudoku-cell[b-1v0phkkdj8] {
        width: 44px;
        height: 44px;
        font-size: 1.2rem;
    }

    .shapes-legend[b-1v0phkkdj8] {
        font-size: 1.2rem;
        gap: 1rem;
    }
}

@media (max-width: 400px) {
    .sudoku-cell[b-1v0phkkdj8] {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }
}
/* /Components/InteractiveSudoku.razor.rz.scp.css */
.interactive-sudoku-container[b-t5f4qv0w3v] {
    display: flex;
    justify-content: center;
}

.sudoku-interactive[b-t5f4qv0w3v] {
    border-collapse: collapse;
    margin: 0 auto;
    max-width: 100%;
    border: 3px solid #1A365D; /* Thick outer border */
}

.sudoku-cell[b-t5f4qv0w3v] {
    position: relative; /* Essential for wheel absolute positioning */
    width: 60px;
    height: 60px;
    text-align: center;
    vertical-align: middle;
    font-size: 1.5rem;
    font-weight: 700;
    border: 1px solid #94a3b8; /* Stronger inner borders */
    cursor: default;
    user-select: none;
    transition: background-color 0.15s;
    aspect-ratio: 1/1;
}

.cell-fixed[b-t5f4qv0w3v] {
    background-color: #f8fafc;
    color: #0f172a;
    font-weight: 800;
}

.cell-playable[b-t5f4qv0w3v] {
    background-color: white;
    color: var(--accent, #4A90E2);
    cursor: pointer;
}

.cell-playable:hover[b-t5f4qv0w3v] {
    background-color: #f0f9ff;
}

.cell-error[b-t5f4qv0w3v] {
    background-color: #fef2f2 !important;
    animation: shake-b-t5f4qv0w3v 0.3s ease-in-out;
}

/* Thick block borders */
.border-top-thick[b-t5f4qv0w3v]    { border-top:    3px solid #1A365D !important; }
.border-left-thick[b-t5f4qv0w3v]   { border-left:   3px solid #1A365D !important; }
.border-bottom-thick[b-t5f4qv0w3v] { border-bottom: 3px solid #1A365D !important; }
.border-right-thick[b-t5f4qv0w3v]  { border-right:  3px solid #1A365D !important; }

/* Radial Menu (Wheel) */
.picker-backdrop[b-t5f4qv0w3v] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10;
}

.symbol-wheel[b-t5f4qv0w3v] {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    z-index: 20;
}

.wheel-btn[b-t5f4qv0w3v] {
    position: absolute;
    width: 38px;
    height: 38px;
    margin: -19px 0 0 -19px; /* Center perfectly */
    border-radius: 50%;
    background: white;
    border: 2px solid var(--accent, #4a90e2);
    color: var(--accent, #4a90e2);
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    transition: background-color 0.2s, color 0.2s;
    padding: 0;
}

.wheel-btn:hover[b-t5f4qv0w3v] {
    background: var(--accent, #4a90e2);
    color: white;
    z-index: 21;
}

.wheel-clear[b-t5f4qv0w3v] {
    border-color: #ef4444;
    color: #ef4444;
}

.wheel-clear:hover[b-t5f4qv0w3v] {
    background: #ef4444;
    color: white;
}

/* Game actions */
.game-actions[b-t5f4qv0w3v] {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    margin-top: 1.5rem;
}

.game-actions .btn[b-t5f4qv0w3v] {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: transform 0.1s, opacity 0.2s, background-color 0.2s;
    font-family: var(--font-ui);
}

.game-actions .btn:active[b-t5f4qv0w3v] {
    transform: scale(0.98);
}

.game-actions .btn-primary[b-t5f4qv0w3v] {
    background-color: var(--accent, #4a90e2);
    color: white;
    box-shadow: 0 4px 14px rgba(74, 144, 226, 0.2);
}

.game-actions .btn-primary:hover[b-t5f4qv0w3v] {
    background-color: var(--accent-hover, #357abd);
}

.game-actions .btn-outline[b-t5f4qv0w3v] {
    background-color: #f1f5f9;
    color: var(--text-primary, #1a365d);
    border: 1.5px solid #e2e8f0;
}

.game-actions .btn-outline:hover[b-t5f4qv0w3v] {
    background-color: #e2e8f0;
    border-color: #cbd5e1;
}

/* Result messages */
.result-message[b-t5f4qv0w3v] {
    text-align: center;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-weight: 700;
    margin-top: 1rem;
}

.result-success[b-t5f4qv0w3v] {
    background-color: #ecfdf5;
    color: #065f46;
    border: 1px solid #10b981;
}

.result-error[b-t5f4qv0w3v] {
    background-color: #fef2f2;
    color: #991b1b;
    border: 1px solid #ef4444;
}

@keyframes shake-b-t5f4qv0w3v {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-4px); }
    75% { transform: translateX(4px); }
}

/* Responsive */
@media (max-width: 600px) {
    .sudoku-cell[b-t5f4qv0w3v] {
        width: 44px;
        height: 44px;
        font-size: 1.2rem;
    }
}

@media (max-width: 400px) {
    .sudoku-cell[b-t5f4qv0w3v] {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }
}
/* /Components/InteractiveWordSearch.razor.rz.scp.css */
.interactive-wordsearch-container[b-urguyzwui0] {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    justify-content: center;
    padding: 1rem;
}

.wordsearch-grid[b-urguyzwui0] {
    display: grid;
    grid-template-columns: repeat(var(--grid-cols), 1fr);
    gap: 4px;
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -1px rgb(0 0 0 / 0.06);
}

.grid-cell[b-urguyzwui0] {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    color: #334155;
    cursor: pointer;
    user-select: none;
    position: relative;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.grid-cell:hover:not(.found):not(.selected)[b-urguyzwui0] {
    background-color: #e2e8f0;
}

.grid-cell.found[b-urguyzwui0] {
    background-color: #10b981; /* Green for found */
    color: white;
    cursor: default;
}

.grid-cell.selected[b-urguyzwui0] {
    background-color: #3b82f6 !important; /* Blue for selection - important overrides found */
    color: white !important;
}

.result-message[b-urguyzwui0] {
    padding: 1rem;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    animation: fadeIn-b-urguyzwui0 0.3s ease-out;
}

.result-success[b-urguyzwui0] {
    background-color: #ecfdf5;
    color: #059669;
    border: 1px solid #a7f3d0;
}

@keyframes fadeIn-b-urguyzwui0 {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.wordsearch-words[b-urguyzwui0] {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -1px rgb(0 0 0 / 0.06);
    min-width: 200px;
}

.wordsearch-words h4[b-urguyzwui0] {
    margin-top: 0;
    color: #1e293b;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    border-bottom: 2px solid #e2e8f0;
    padding-bottom: 0.5rem;
}

.wordsearch-words ul[b-urguyzwui0] {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.wordsearch-words li[b-urguyzwui0] {
    font-size: 1rem;
    color: #475569;
    font-weight: 600;
    transition: all 0.3s ease;
}

.wordsearch-words li.word-found[b-urguyzwui0] {
    text-decoration: line-through;
    color: #cbd5e1;
}

@keyframes popIn-b-urguyzwui0 {
    from { transform: scale(0); }
    to { transform: scale(1); }
}

@media (max-width: 768px) {
    .interactive-wordsearch-container[b-urguyzwui0] {
        flex-direction: column;
        align-items: center;
    }
    
    .wordsearch-words[b-urguyzwui0] {
        width: 100%;
        max-width: 400px;
    }
    
    .grid-cell[b-urguyzwui0] {
        width: 28px;
        height: 28px;
        font-size: 0.95rem;
    }
}
/* /Pages/FormsSudokuGenerator.razor.rz.scp.css */
.tabs-container[b-4qb7p8440n] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.tabs-header[b-4qb7p8440n] {
    display: flex;
    gap: 0.5rem;
    border-bottom: 2px solid #e2e8f0;
    margin-bottom: 1rem;
}

.tab-btn[b-4qb7p8440n] {
    padding: 0.75rem 1.5rem;
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    font-size: 1rem;
    font-weight: 600;
    color: #64748b;
    cursor: pointer;
    transition: all 0.2s;
}

.tab-btn:hover[b-4qb7p8440n] {
    color: #1a365d;
    background-color: #f8fafc;
}

.tab-btn.active[b-4qb7p8440n] {
    color: #4a90e2;
    border-bottom-color: #4a90e2;
}

.pdf-viewer[b-4qb7p8440n] {
    width: 100%;
    height: 70vh;
    min-height: 600px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
}

@media (max-width: 768px) {
    .d-none-mobile[b-4qb7p8440n] {
        display: none !important;
    }
}
/* /Pages/SudokuGenerator.razor.rz.scp.css */
.tabs-container[b-ov2ki0vi7v] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.tabs-header[b-ov2ki0vi7v] {
    display: flex;
    gap: 0.5rem;
    border-bottom: 2px solid #e2e8f0;
    margin-bottom: 1rem;
}

.tab-btn[b-ov2ki0vi7v] {
    padding: 0.75rem 1.5rem;
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    font-size: 1rem;
    font-weight: 600;
    color: #64748b;
    cursor: pointer;
    transition: all 0.2s;
}

.tab-btn:hover[b-ov2ki0vi7v] {
    color: #1a365d;
    background-color: #f8fafc;
}

.tab-btn.active[b-ov2ki0vi7v] {
    color: #4a90e2;
    border-bottom-color: #4a90e2;
}

.pdf-viewer[b-ov2ki0vi7v] {
    width: 100%;
    height: 70vh;
    min-height: 600px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
}

@media (max-width: 768px) {
    .d-none-mobile[b-ov2ki0vi7v] {
        display: none !important;
    }
}
/* /Pages/WordSearchGenerator.razor.rz.scp.css */
.tabs-container[b-tv8pomcxz3] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.tabs-header[b-tv8pomcxz3] {
    display: flex;
    gap: 0.5rem;
    border-bottom: 2px solid #e2e8f0;
    margin-bottom: 1rem;
}

.tab-btn[b-tv8pomcxz3] {
    padding: 0.75rem 1.5rem;
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    font-size: 1rem;
    font-weight: 600;
    color: #64748b;
    cursor: pointer;
    transition: all 0.2s;
}

.tab-btn:hover[b-tv8pomcxz3] {
    color: #1a365d;
    background-color: #f8fafc;
}

.tab-btn.active[b-tv8pomcxz3] {
    color: #4a90e2;
    border-bottom-color: #4a90e2;
}

.pdf-viewer[b-tv8pomcxz3] {
    width: 100%;
    height: 70vh;
    min-height: 600px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
}

@media (max-width: 768px) {
    .tab-pdf[b-tv8pomcxz3] {
        display: none !important;
    }
}
