/* ═══════════════════════════════════════════════════════════════
   QUICK SONG — Progress UI styles
   ═══════════════════════════════════════════════════════════════ */

#quickProgress {
  max-width: 600px;
  margin: 2rem auto;
  padding: 2rem;
}

.quick-header {
  text-align: center;
  margin-bottom: 2rem;
}

.quick-header h2 {
  margin-bottom: 0.5rem;
}

.quick-stages {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.quick-stage {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--card-bg);
  border: 1px solid #2a2a3a;
  border-radius: 10px;
  transition: all 0.3s ease;
  opacity: 0.5;
}

.quick-stage[data-status="running"] {
  opacity: 1;
  border-color: var(--accent);
  box-shadow: 0 0 15px rgba(233, 69, 96, 0.15);
}

.quick-stage[data-status="done"] {
  opacity: 1;
  border-color: var(--green);
}

.quick-stage[data-status="error"] {
  opacity: 1;
  border-color: var(--accent);
  background: rgba(233, 69, 96, 0.05);
}

.qs-emoji {
  font-size: 1.5rem;
  width: 2rem;
  text-align: center;
}

.qs-label {
  flex: 1;
  font-size: 1rem;
  color: var(--text);
}

.qs-status {
  font-size: 1.1rem;
  min-width: 2rem;
  text-align: center;
}

/* Running stage pulse */
.qs-active {
  animation: qsPulse 1.5s ease-in-out infinite;
}

@keyframes qsPulse {
  0%, 100% { box-shadow: 0 0 5px rgba(233, 69, 96, 0.1); }
  50% { box-shadow: 0 0 20px rgba(233, 69, 96, 0.25); }
}

/* Done stage checkmark bounce */
.qs-done .qs-status {
  animation: qsBounce 0.4s ease;
}

@keyframes qsBounce {
  0% { transform: scale(0); }
  60% { transform: scale(1.3); }
  100% { transform: scale(1); }
}

.quick-error {
  margin-top: 1.5rem;
  padding: 1rem;
  background: rgba(233, 69, 96, 0.08);
  border: 1px solid var(--accent);
  border-radius: 8px;
  text-align: center;
}

.quick-error p {
  margin-bottom: 0.75rem;
  color: var(--accent);
}

.quick-error .btn {
  margin: 0.25rem;
}

/* Selection bar Quick Song button */
.btn-green {
  background: var(--green);
  color: #1a1a2e;
  font-weight: 600;
  border: none;
}

.btn-green:hover {
  background: #4dff91;
  transform: translateY(-1px);
}
