/* =====================================================================
   File: Custom.css
   Class Responsibility: Generic, low-level utility overrides applied
       globally across all pages. Currently contains a single color helper.
   Business Context: Used to mark required/error field values and urgent
       workflow indicators (e.g., overdue items, validation errors) in red.
   Related Files: styles.css, stylesnew.css, parsley-validation.css
   Change Impact: Any page referencing the .red class will be affected
       site-wide. Keep utility classes here minimal and non-component-
       specific so page-specific styles stay in page-scoped CSS files.
   ===================================================================== */
.red {
    color:red;
}
