/* ── App overrides (loaded after TailAdmin CSS) ────────────── */

/* Hide the reCAPTCHA v3 badge – Google allows this as long as
   you include their required attribution text on protected pages.
   See: https://developers.google.com/recaptcha/docs/faq */
.grecaptcha-badge {
  visibility: hidden !important;
}

/* ── CAM Brand Colors ────────────────────────────────────────── */
/* Accent: #e56c71 (coral), Dark: #263230 (dark green) */
:root {
  --cam-accent: #e56c71;
  --cam-dark: #263230;
}

.bg-cam-accent { background-color: var(--cam-accent); }
.text-cam-accent { color: var(--cam-accent); }
.bg-cam-dark { background-color: var(--cam-dark); }
.text-cam-dark { color: var(--cam-dark); }

/* Override TailAdmin brand color where appropriate */
.bg-brand-500 { background-color: var(--cam-accent) !important; }
.bg-brand-600 { background-color: #d45a5f !important; }
.text-brand-500 { color: var(--cam-accent) !important; }

