.prob-enter {
  opacity: 0;
  animation: probability-row-in .42s ease-out forwards;
}

.prob-animate {
  transform: scaleX(0);
  transform-origin: left center;
  animation: probability-bar-grow .7s cubic-bezier(.22,.8,.28,1) forwards;
}

.prob-row:first-child .prob-head {
  color: #b71c1c;
}

.probability-waiting {
  display: flex;
  align-items: center;
  gap: 8px;
}

.waiting-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #1769aa;
  box-shadow: 0 0 0 0 rgba(23,105,170,.45);
  animation: waiting-pulse 1.15s ease-out infinite;
}

@keyframes probability-row-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes probability-bar-grow {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

@keyframes waiting-pulse {
  70% { box-shadow: 0 0 0 7px rgba(23,105,170,0); }
  100% { box-shadow: 0 0 0 0 rgba(23,105,170,0); }
}

@media (prefers-reduced-motion: reduce) {
  .prob-enter, .prob-animate, .waiting-dot { animation: none; opacity: 1; transform: none; }
}
