/* Memory verses.
   Styled entirely in the app's own tokens - no literal colors - so when the
   root tokens move to Scoreboard this screen moves with them. */

.v-wrap { max-width: 760px; margin: 0 auto; }

.v-head { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.v-ref { font-family: var(--pixel); font-size: 15px; color: var(--turq); }
.v-sub { font-size: 12px; color: var(--muted); margin-top: 5px; }

.v-lead { color: var(--muted); font-size: 15px; margin: 0 0 16px; }

/* The verse itself is the one thing on the screen he is reading closely, so it
   is set in the body face at a size that survives an arm's length on a tablet -
   never in the pixel face, which is for labels and numbers. */
.v-text {
  margin: 0 0 22px; padding: 22px 24px;
  background: var(--card); border: 3px solid var(--line); border-radius: 8px;
  font-size: 22px; line-height: 1.62; color: var(--ink);
}
.v-text.coach { letter-spacing: .01em; }

.v-verdict {
  font-family: var(--pixel); font-size: 17px; color: var(--muted);
  margin-bottom: 14px;
}
.v-verdict.good { color: var(--green); }
.v-verdict.near { color: var(--turq); }
.v-verdict.big { font-size: 22px; }

/* What he just said, as it is being heard. It has to be able to grow without
   the buttons under it jumping, so it holds its height. */
.v-heard {
  min-height: 96px; padding: 16px 18px; margin: 0 0 16px;
  border: 2px dashed var(--line); border-radius: 8px;
  font-size: 18px; line-height: 1.5; color: var(--ink);
}

.v-typed {
  width: 100%; padding: 14px 16px; margin-bottom: 16px;
  background: var(--card); color: var(--ink);
  border: 3px solid var(--line); border-radius: 8px;
  font: inherit; font-size: 18px; line-height: 1.5;
}

.v-bar {
  height: 14px; margin: 0 0 20px; overflow: hidden;
  background: var(--card); border: 2px solid var(--line); border-radius: 4px;
}
.v-bar-fill { height: 100%; background: var(--turq); transition: width 320ms ease; }
@media (prefers-reduced-motion: reduce) { .v-bar-fill { transition: none; } }

.v-wrap .big-btn { width: 100%; margin-bottom: 10px; }
.v-wrap .ghost-btn { width: 100%; }

@media (orientation: landscape) and (min-width: 820px) {
  .v-text { font-size: 24px; }
}

/* Adding a verse from his own shelf, not from behind the parent PIN. */
.add-verse {
  max-width: 460px; margin: 0 auto 26px; padding: 18px 20px;
  background: var(--card); border: 3px dashed var(--line); border-radius: 8px;
}
.add-verse .field { display: block; margin-bottom: 12px; }
.add-verse input { width: 100%; }
.add-verse .big-btn { width: 100%; }
.add-verse-msg { min-height: 20px; margin: 10px 0 0; font-size: 13px; color: var(--muted); }
