#chrono-zone {
  margin-bottom: 16px;
}
#chrono-zone.hidden {
  display: none;
}
.chrono-bar-container {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  height: 28px;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.chrono-bar {
  height: 100%;
  border-radius: 8px;
  transition: width 0.1s linear;
  background: linear-gradient(90deg, #6366f1, #a78bfa);
}
.chrono-bar.danger {
  background: linear-gradient(90deg, #ef4444, #f87171);
}
.chrono-bar.warning {
  background: linear-gradient(90deg, #f59e0b, #fbbf24);
}
.chrono-text {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 1px 3px rgba(0,0,0,0.4);
}
