/* app/css/56-movimento-ticket.css — estratto da app.css (2026-07, split senza build). */
/* ==========================================================
   W5 · Movimento detail (drill-down lavaggi.html)
   ========================================================== */
.mov-detail { padding: 18px 18px 80px; }

.mov-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 24px 16px 20px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  margin-bottom: 22px;
  gap: 4px;
}
.mov-hero-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}
.mov-hero-icon--in { background: #e8f5e9; color: #2e7d32; }
.mov-hero-icon--out { background: var(--brand-soft); color: var(--brand); }
.mov-hero-icon--neutral { background: var(--bg); color: var(--ink-2); }
.mov-hero-icon .i { width: 32px; height: 32px; }

.mov-hero-label { font-size: 14px; font-weight: 600; color: var(--ink-2); text-transform: uppercase; letter-spacing: 0.5px; }
.mov-hero-amount { font-size: 38px; font-weight: 800; color: var(--ink); letter-spacing: -0.6px; margin: 4px 0 2px; }
.mov-hero-amount--in { color: #2e7d32; }
.mov-hero-amount--out { color: var(--ink); }
.mov-hero-when { font-size: 13px; color: var(--ink-3); text-transform: capitalize; }

/* ==========================================================
   W5 · Ticket form (problema + miglioramento)
   ========================================================== */
.field-error {
  color: #c62828;
  font-size: 12px;
  margin-top: 6px;
  padding-left: 2px;
  font-weight: 600;
}
/* Validazione: bordo rosso sul campo invalido (messaggio = .field-error sopra) */
input[aria-invalid="true"], select[aria-invalid="true"], textarea[aria-invalid="true"] {
  border-color: #c62828;
}
.submit-btn[disabled] {
  opacity: 0.6;
  pointer-events: none;
}

