@charset "UTF-8";
/*!
 * prod-site.css (LucityCitizenPortalPCF) — GENERATED FILE. DO NOT EDIT DIRECTLY.
 * Source: src/main-pcf-prod-site.scss
 *
 * Tiny "site chrome" stylesheet loaded on every prod PCF page via a static
 * <link> in VolusiaCountyPortals.master. Centers the outer form container
 * and softens the visual treatment of required fields.
 *
 * Deliberately minimal — does NOT flatten positioning of inner controls,
 * so Lucity's stock per-control absolute layout continues to work for forms
 * that don't have a per-form override file shipped.
 *
 * Forms with a per-form CSS file (VCEP0AC.css, CFLAP011.css, ...) re-set
 * the same #ctl00_phContent_ctl00 properties from their _global.scss
 * inclusion; per-form bundle loads AFTER prod-site.css, so per-form rules
 * win the cascade either way.
 *
 * Deploy: copied to PCF on prod only. The deploy workflow filters out any
 * `prod-*.css` file on dev/test because dev's full StyleSheet.css already
 * provides equivalent (and richer) global chrome.
 */
#ctl00_phContent_ctl00 {
  display: block !important;
  margin: 0 auto !important;
  position: relative !important;
  left: auto !important;
  right: auto !important;
  transform: none !important;
}

input:required,
input:invalid,
textarea:required,
textarea:invalid,
select:required,
select:invalid {
  background-color: #d6e4f2 !important;
  box-shadow: none !important;
  outline: none !important;
}
