/*
 * This is a manifest file that'll be compiled into application.css.
 *
 * With Propshaft, assets are served efficiently without preprocessing steps. You can still include
 * application-wide styles in this file, but keep in mind that CSS precedence will follow the standard
 * cascading order, meaning styles declared later in the document or manifest will override earlier ones,
 * depending on specificity.
 *
 * Consider organizing styles into separate files for maintainability.
 */

/* Cardiovascular Risk Indicators */
.risk-normal {
  background-color: #d4edda;
  color: #155724;
}

.risk-borderline {
  background-color: #fff3cd;
  color: #856404;
}

.risk-high {
  background-color: #f8d7da;
  color: #721c24;
}

.risk-very-high {
  background-color: #f5c6cb;
  color: #721c24;
}

/* Age-amplified risk (darker shades for older ages) */
.risk-normal.age-40-59 {
  background-color: #c3e6cb;
}

.risk-borderline.age-40-59 {
  background-color: #ffeaa7;
}

.risk-high.age-40-59 {
  background-color: #f1aeb5;
}

.risk-very-high.age-40-59 {
  background-color: #ea868f;
}

.risk-normal.age-60plus {
  background-color: #b8daff;
}

.risk-borderline.age-60plus {
  background-color: #ffdd99;
}

.risk-high.age-60plus {
  background-color: #e2a3a8;
}

.risk-very-high.age-60plus {
  background-color: #d9534f;
}
