/* iOS Safari fix: prevent text size auto-adjust */
html { -webkit-text-size-adjust: 100%; }

/* Greek-friendly font for prompt text */
.greek, .font-serif {
    font-family: "Cambria", "Times New Roman", "Palatino Linotype", "DejaVu Serif", serif;
}

/* Smooth tap feedback on iOS */
button {
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

/* Prevent zooming on input focus on iOS */
input, textarea, select {
    font-size: 16px;
}

/* Active correction inputs styling */
input.lowercase {
    text-transform: lowercase;
}

/* Animation for question card */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}
[x-show] { animation: fadeIn 0.2s ease-out; }
