/* /cvss/ severity badge. Flat, rigid (square corners, no gradient).
   Color scale follows the standard CVSS v3.1 severity ratings. */

#cvss-severity {
  display: inline-block;
  padding: 0.1rem 0.55rem;
  border: 1px solid #2a2a2a;
  border-radius: 0;          /* rigid corners */
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.4;
  /* default (before first compute / unknown) */
  background: #9e9e9e;
  color: #1a1a1a;
}

#cvss-severity[data-sev="None"]     { background: #9e9e9e; color: #1a1a1a; }
#cvss-severity[data-sev="Low"]      { background: #2e7d32; color: #ffffff; }
#cvss-severity[data-sev="Medium"]   { background: #f9a825; color: #1a1a1a; }
#cvss-severity[data-sev="High"]     { background: #c43e00; color: #ffffff; }
#cvss-severity[data-sev="Critical"] { background: #b71c1c; color: #ffffff; }
