/* Force dark text color on all Radix UI TextField inputs.
   The rx.input wrapper applies style to .rt-TextFieldRoot (a div), but
   the inner .rt-TextFieldInput needs its own color override. */
.rt-TextFieldInput {
    color: #1f2937 !important;
}

/* Ensure text areas also have visible dark text */
.rt-TextAreaInput {
    color: #1f2937 !important;
}

/* Date input type */
input[type="date"] {
    color: #1f2937 !important;
}
