/* Milestone 10C OCR review refinements */
.scan-cell.is-ocr-review:not(.is-conflict) {
  background: var(--surface);
  color: var(--given-ink);
  box-shadow: inset 0 0 0 3px rgba(245, 158, 11, 0.65);
}

.scan-cell.is-conflict,
.scan-cell.is-conflict.is-ocr-low-confidence,
.scan-cell.is-conflict.is-ocr-review {
  background: var(--bad);
  color: var(--bad-ink);
  box-shadow: inset 0 0 0 3px rgba(185, 28, 28, 0.7);
}


/* App-level tools keep utility actions below the primary puzzle workspace. */
.app-tools-card {
  display: grid;
  gap: 10px;
}

.app-tools-heading {
  align-items: flex-start;
  gap: 12px;
}

.app-tools-heading .account-tier-pill {
  flex: 0 0 auto;
  margin-left: auto;
  white-space: nowrap;
}

.app-tool-actions {
  align-items: center;
}

.app-tool-actions .button,
.app-tool-actions label.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.scan-image-label.is-loading,
.scan-image-label.is-processing {
  cursor: progress;
  opacity: 0.72;
  pointer-events: none;
}

.daily-prompt-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px;
  border: 1px solid rgba(124, 58, 237, 0.22);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.12), rgba(37, 99, 235, 0.10), rgba(245, 158, 11, 0.10));
  box-shadow: 0 18px 32px rgba(37, 99, 235, 0.10);
}

.daily-prompt-card[hidden] {
  display: none;
}

.daily-prompt-copy {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.daily-prompt-kicker {
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}

.daily-prompt-copy strong {
  font-size: 1rem;
  color: var(--ink);
}

.daily-prompt-copy span:last-child {
  font-size: 0.86rem;
  color: var(--muted);
}

.daily-prompt-button {
  flex: 0 0 auto;
  box-shadow: 0 12px 24px rgba(37, 99, 235, 0.18);
}

.app-scan-card[hidden] {
  display: none;
}

.app-scan-card {
  scroll-margin-top: 18px;
}

