/* Tylko style gry — baza (body, karta, przyciski, pola) pochodzi z edu-theme.css */

#gameContainer {
    max-width: 640px;
}

#hint a {
    color: var(--edu-primary);
    white-space: nowrap;
}

#progress {
    margin: 12px 0;
    font-weight: 600;
}

#gameForm {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

#foundWord {
    flex: 1 1 220px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 18px;
}

.message {
    margin-top: 16px;
    font-size: 18px;
    min-height: 1.4em;
}

.message.ok { color: #15803d; }
.message.zle { color: #b91c1c; }

#history {
    margin: 12px 0 0;
    padding-left: 22px;
}

#history li {
    margin: 4px 0;
    letter-spacing: 1px;
}

#history .ok::after { content: " ✓"; color: #15803d; }
#history .zle::after { content: " ✗"; color: #b91c1c; }
