/*
 * Fields the passport scan pre-filled are tinted amber so the clerk reviews
 * them; the tint clears the moment the clerk edits the field.
 *
 * Theme-aware: a pale amber in light mode, a dark amber in dark mode. A
 * light-yellow fill in dark mode washes out the theme's near-white input text
 * (white-on-yellow is unreadable), so dark mode darkens the fill and pins a
 * light amber text color.
 */

.ai-filled .fi-input,
.ai-filled input,
.ai-filled textarea,
.ai-filled .fi-select-input,
.ai-filled .fi-fo-date-time-picker {
    background-color: #fff8db !important;
}

.dark .ai-filled .fi-input,
.dark .ai-filled input,
.dark .ai-filled textarea,
.dark .ai-filled .fi-select-input,
.dark .ai-filled .fi-fo-date-time-picker {
    background-color: #4a3a08 !important;
    color: #fef3c7 !important;
}
