/* Status page styles */
.status-page-layout {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-color: #f8f9fa;
}

.status-main {
  flex: 1;
  padding: 2rem 0;
}

/* Progress bar */
.processing-status {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
  background: white;
  border-radius: 0.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.progress-bar {
  width: 100%;
  height: 8px;
  background-color: #e9ecef;
  border-radius: 4px;
  margin-bottom: 2rem;
  overflow: hidden;
}

.progress-bar-fill {
  height: 100%;
  background-color: #4CAF50;
  width: 0%;
  transition: width 0.3s ease;
}

/* Step indicators */
.step-indicators {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-bottom: 2rem;
}

.step-indicators::before {
  content: '';
  position: absolute;
  top: 15px;
  left: 0;
  right: 0;
  height: 2px;
  background-color: #e9ecef;
  z-index: 1;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
  background: white;
  padding: 0 1rem;
}

.step-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: #e9ecef;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
  font-weight: bold;
  color: #6c757d;
}

.step.completed .step-icon {
  background-color: #4CAF50;
  color: white;
}

.step.in-progress .step-icon {
  background-color: #2196F3;
  color: white;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

.step-text {
  font-size: 0.875rem;
  color: #6c757d;
  text-align: center;
  white-space: nowrap;
}

/* Status content */
.status-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
  background: white;
  border-radius: 0.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.status-content h2 {
  color: #2d3748;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  font-weight: 600;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .step-indicators {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  
  .step {
    flex-direction: row;
    width: 100%;
    padding: 0.5rem 0;
    align-items: center;
    justify-content: flex-start;
    gap: 1rem;
  }
  
  .step-icon {
    margin-bottom: 0;
  }
  
  .status-content {
    padding: 1.5rem;
  }
}
