.tender-progress-wrapper {
  margin: 0;
  padding: 20px;
  background: #fff;
  border-radius: 16px;
}

.tender-progress-wrapper .container {
  margin: 0 auto 0 -6px;
  padding: 0;
  max-width: 1000px;
}

.tender-progress-wrapper h3 {
  margin: 0 0 16px;
}

.progress-stages {
  position: relative;
  height: 120px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

#progress-track {
  position: absolute;
  top: 25px;
  left: 50px;
  width: calc(100% - 100px);
  height: 6px;
  background: #e0e7ff;
  border-radius: 3px;
  z-index: 1;
  overflow: hidden;
}

#progress-fill {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, #4CAF50 0%, #2196F3 50%, #9C27B0 100%);
  border-radius: 3px;
  transition: width 1.4s ease;
  box-shadow: 0 0 10px rgba(76, 175, 80, 0.4);
}

.progress-step {
  text-align: center;
  position: relative;
  z-index: 2;
}

.progress-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #e0e7ff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  font-weight: 600;
  color: #64748b;
  z-index: 2;
  transition: all 0.4s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  border: 3px solid white;
}

.progress-circle span {
  font-weight: 600;
}

.step-label {
  font-size: 14px;
  margin-top: 12px;
  color: #64748b;
  font-weight: 500;
  transition: all 0.3s ease;
}

.step-date {
  font-size: 12px;
  margin-top: 4px;
  color: #94a3b8;
  min-height: 18px;
}

/* Скрываем 4-й этап по умолчанию */
.progress-step[data-stage="4"] {
  display: none;
}

#stage-description {
  margin-top: 30px;
  padding: 20px;
  font-family: 'Open Sans', sans-serif !important;
  border-radius: 12px;
  background: #f8f9fa;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  border-left: 4px solid #4CAF50;
  transition: all 0.3s ease;
}




 