/* ============================================================
   STEM ROCK DIGITAL — Custom Styles
   All non-Tailwind custom CSS lives here.
   ============================================================ */

/* ----------------------------------------------------------
   Contact Page — Radio card selection states
   ---------------------------------------------------------- */
.radio-card.selected {
  border-color: #1a3a2a;
  background-color: #e8ede8;
}
.radio-card.selected .radio-indicator {
  border-color: #1a3a2a;
}
.radio-card.selected .radio-dot {
  opacity: 1;
}
.radio-card:hover {
  border-color: #1a3a2a66;
}

/* ----------------------------------------------------------
   Admin Dashboard — Layout & modal helpers
   ---------------------------------------------------------- */

/* Hide the public site-navbar on the admin page (desktop) — sidebar replaces it */
@media (min-width: 1024px) {
  .admin-page site-navbar { display: none; }
}

/* Prevent body scroll when a modal is open */
body.modal-open { overflow: hidden; }
