/* FIELD (Community Care / SEND) — vertical-specific CSS. Loads AFTER /static/css/torvo_theme.css */

/* Form input — darker border + Windows dark mode cursor fix */
.form-input {
  width: 100%; background: var(--surface); border: 1.5px solid #9CA3AF;
  border-radius: 10px; padding: 12px 16px; font-family: var(--font);
  font-size: 14px; color: var(--text); outline: none;
}
.form-input:focus { border-color: var(--red); box-shadow: 0 0 0 3px rgba(226,55,68,0.08); }
.form-input::placeholder { color: #9CA3AF; }
textarea, input[type="text"], input[type="email"], input[type="password"], input[type="number"] {
  cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='2' height='20'%3E%3Crect width='2' height='20' rx='1' fill='%23E23744'/%3E%3C/svg%3E") 1 10, text !important;
  color: #141820 !important;
  caret-color: #E23744 !important;
}
.form-error { color: var(--red); font-size: 13px; margin-bottom: 12px; }

/* Section hero (summary card at top of SEND/CC pages) */
.section-hero { background: var(--surface); border: 1px solid var(--border); border-radius: 14px; padding: 24px; margin-bottom: 20px; display: flex; align-items: center; gap: 16px; box-shadow: 0 1px 3px rgba(0,0,0,0.04); }
.section-hero-icon { font-size: 32px; }
.section-hero-text h2 { font-size: 20px; font-weight: 700; margin-bottom: 4px; color: var(--text); }
.section-hero-text p { font-size: 14px; color: var(--text2); }
.section-hero .btn { margin-left: auto; white-space: nowrap; }

/* Empty state */
.empty-state { text-align: center; padding: 40px 20px; color: var(--text2); }
.empty-state p { font-size: 15px; margin-bottom: 16px; }

@media (max-width: 768px) {
  .content { padding: 16px; max-width: 100%; box-sizing: border-box; }
  .section-hero { flex-direction: column; text-align: center; }
  .section-hero .btn { margin-left: 0; }
}
