.section-title {
  font-size: 0.75rem;
  font-weight: normal;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #6c757d;
  margin: 0;
  font-family: 'Courier New', monospace;
}

.sev-pip {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
  display: inline-block;
}
.sev-pip.critical { background: #dc3545; }
.sev-pip.warning  { background: #ffc107; }
.sev-pip.info     { background: #0dcaf0; }

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ccc;
  display: inline-block;
  flex-shrink: 0;
}
.status-dot.saved  { background: #198754; }
.status-dot.saving { background: #ffc107; animation: pulse 1s infinite; }
.status-dot.error  { background: #dc3545; }

@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }
