/* waiting-screen.css — 等候畫面(行動已送出,等老師結算) */

.hd-waiting {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  box-sizing: border-box;
}

.hd-waiting__card {
  background: var(--hd-card-bg, #fff);
  border: 1px solid var(--hd-border, #e5e1d8);
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, .08);
  padding: 40px 48px;
  text-align: center;
  max-width: 540px;
  width: 100%;
}

.hd-waiting__spinner {
  width: 56px;
  height: 56px;
  border: 5px solid var(--hd-border, #e5e1d8);
  border-top-color: var(--hd-accent, #6B9E47);
  border-radius: 50%;
  margin: 0 auto 20px;
  animation: hd-waiting-spin 1s linear infinite;
}

@keyframes hd-waiting-spin {
  to { transform: rotate(360deg); }
}

.hd-waiting__title {
  font-size: 24px;
  font-weight: 700;
  color: var(--hd-ink, #2c2a26);
  margin: 0 0 8px;
}

.hd-waiting__subtitle {
  font-size: 14px;
  color: var(--hd-ink-soft, #6b665e);
  margin: 0 0 28px;
  line-height: 1.6;
}

.hd-waiting__progress {
  margin: 0 0 20px;
}

.hd-waiting__bar {
  height: 10px;
  background: var(--hd-bg-soft, #f0ece3);
  border-radius: 5px;
  overflow: hidden;
  margin-bottom: 10px;
}

.hd-waiting__bar-fill {
  height: 100%;
  background: var(--hd-accent, #6B9E47);
  transition: width .4s ease;
}

.hd-waiting__count {
  font-size: 14px;
  color: var(--hd-ink-soft, #6b665e);
}

.hd-waiting__count strong {
  color: var(--hd-ink, #2c2a26);
  font-size: 16px;
}

.hd-waiting__round {
  font-size: 13px;
  color: var(--hd-ink-soft, #6b665e);
  border-top: 1px dashed var(--hd-border, #e5e1d8);
  padding-top: 16px;
  margin-top: 16px;
}
