/* Power & Projects – readability overrides (dropdown + submit button) */

/* Dropdown (select) readability */
select {
  background: #0f1218 !important;
  color: #e6edf3 !important;
  border: 1px solid rgba(245, 200, 76, 0.55) !important;
  box-shadow: 0 0 0 1px rgba(245, 200, 76, 0.14), 0 10px 28px rgba(0,0,0,0.45);
  color-scheme: dark; /* helps Edge/Chrome render the option list in dark UI */
}

/* Placeholder-ish first option (common pattern: value="" + disabled + selected) */
select:invalid {
  color: rgba(230, 237, 243, 0.72) !important;
}

/* Option list (some browsers honor this; others use OS UI—color-scheme above helps) */
select option {
  background: #0f1218;
  color: #e6edf3;
}
select option:disabled {
  color: rgba(159, 177, 207, 0.9);
}

/* Submit button: force readable label */
button[type="submit"],
input[type="submit"] {
  color: #0b0e14 !important;
  font-weight: 800;
  letter-spacing: 0.2px;
  text-shadow: none !important;
  background: linear-gradient(180deg, #f5c84c 0%, #d9a92b 100%) !important;
  border: 1px solid rgba(245, 200, 76, 0.85) !important;
  box-shadow: 0 0 0 1px rgba(245, 200, 76, 0.12), 0 14px 34px rgba(0,0,0,0.55);
}
button[type="submit"]:hover,
input[type="submit"]:hover {
  filter: brightness(1.06);
}
