/* ===========================================================
   UNIT CONVERTER STYLES
=========================================================== */
.uc-root .uc-body { flex-direction: column; }
.uc-source-note {
  font-family: Verdana, sans-serif; font-size: 10px;
  color: #cce4ff; font-weight: normal;
}
.uc-fields { flex: 1; overflow: auto; background: #ffffff; padding: 0; }
.uc-field-row {
  display: flex; align-items: center; gap: 8px;
  padding: 5px 12px; border-bottom: 1px solid #e8e8e8;
}
.uc-field-row.source { background: #ffffe1; }
.uc-field-row:hover { background: #f4f4ff; }
.uc-field-row.source:hover { background: #fff4d0; }
.uc-field-label {
  flex: 0 0 200px; font-family: Verdana, sans-serif;
  font-size: 11px; color: #404040;
}
.uc-field-row.source .uc-field-label { color: #000080; font-weight: bold; }
.uc-input {
  flex: 1; border: 2px inset #ffffff; background: #ffffff;
  padding: 3px 6px; font-family: "Courier New", monospace;
  font-size: 13px; color: #000080;
}
.uc-input:focus { background: #ffffe8; }
.uc-field-row.source .uc-input { background: #ffff80; }
