/* Barre de progression avec points */
.progress-bar {
  position: fixed;
  top: 15px;
  left: 0;
  right: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 20px;
  z-index: 999;
  pointer-events: none;
  box-sizing: border-box;
  opacity: 0;
  transition: opacity 0.5s ease;
  height: 36px;
  gap: 8px;
}

.progress-bar.visible {
  opacity: 1;
}

.progress-point {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1.5px solid #c80000;
  background-color: transparent;
  transition: background-color 0.3s ease;
  flex-shrink: 0;
}

.progress-point.active {
  background-color: #c80000;
}

/* Responsive pour mobile */
@media (max-width: 700px) {
  .progress-bar {
    top: 10px;
    padding: 8px 15px;
    height: 30px;
    gap: 6px;
  }

  .progress-point {
    width: 6px;
    height: 6px;
    border-width: 1px;
  }
}
