/* Fix for Flutter Web yellow text highlighting bug */
/* This overrides the default Flutter Web CSS that applies yellow background to text */

.flt-text-input,
flt-text-editing-host,
.flt-text-editing-host {
  background-color: transparent !important;
}

/* Additional fix for any semantic text overlays */
flt-semantics-placeholder {
  background-color: transparent !important;
}

flt-semantics-placeholder input,
flt-semantics-placeholder textarea {
  background-color: transparent !important;
}
