::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 999px; }
::-webkit-scrollbar-track { background: transparent; }

.score-ring {
  background: conic-gradient(var(--score-color, #2f8b6c) calc(var(--score, 0) * 1%), #e2e8f0 0);
}

.kpi-good { color: #15803d; }
.kpi-mid { color: #b45309; }
.kpi-bad { color: #b91c1c; }

.modal-backdrop { background: rgba(15, 23, 42, 0.45); }

table.data th { position: sticky; top: 0; background: #fff; z-index: 1; }

.fade-in { animation: fadeIn .15s ease-out; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(4px); } to { opacity: 1; transform: translateY(0); } }
