/* assistant.css — the Assistant, on top of home.css and month.css. Not a
   chat: a question, then its answer set as a sentence you read, the way the
   day's summary is. A change is the same card as the day's proposal, and
   waits for its one tap. */

/* The ask field is fixed at the bottom, like the day's add field, so the
   sheet leaves it room, and room for Cedar standing above it (about 120px),
   so the end of an answer or a card's Confirm always scrolls clear of the
   cow. */
#monthApp.assistant .sheet { padding-bottom: calc(env(safe-area-inset-bottom) + 232px); }

/* Send is an arrow: what's said here is as often "the vet is…" or "clear
   the chores" as a question. The same accent and height as the day's Add. */
.ask-send { width: 44px; padding: 0; display: grid; place-items: center; border-radius: 50%; }
.ask-send svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }

/* The turns and their cards are in home.css, shared with the Schedule's add
   field. */

.start-over {
  display: block;
  margin: 38px 0 0;
  padding: 10px 0;
  border: none;
  background: none;
  font-family: var(--sans);
  font-size: calc(15 * var(--fs));
  color: var(--ink-soft);
  cursor: pointer;
}
.start-over[hidden] { display: none; }
