/* Motion and depth that Tailwind utilities cannot express, matched to the
   RTIH GovTech Challenges portal. Loaded on every page after the CDN. */

/* Interactive cards lift on hover with a purple-tinted shadow. */
.card-hover {
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.card-hover:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 28px rgba(124, 58, 237, 0.13);
}

/* Table rows are clickable but must not lift - they tint instead. */
tbody tr[onclick]:hover {
  background-color: #faf5ff;
}

/* Keyboard focus stays visible in brand purple. */
:focus-visible {
  outline: 2px solid #7e22ce;
  outline-offset: 2px;
}

/* --- Credit footer -------------------------------------------------------
   Hidden for the first few days after launch. The markup stays in place on
   every page; delete this one rule to show it again. */
.site-credit {
  display: none;
}
