#progress-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #1f2937;
  z-index: 9999;
  justify-content: center;
  align-items: center;
}
.progress-container {
  text-align: center;
  width: 400px;
  max-width: 80%;
}
.progress-text {
  font-size: 18px;
  margin-bottom: 20px;
  color: white;
  font-weight: 500;
}
.progress-bar-wrapper {
  width: 100%;
  height: 8px;
  background-color: #e9ecef;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
}
.progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #20c997 0%, #17a2b8 100%);
  transition: width 0.3s ease;
  border-radius: 4px;
}
