/* Project-wide styles. Bootstrap handles the heavy lifting; keep this lean. */

body {
  min-height: 100vh;
}

.card-hover {
  transition: transform 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.card-hover:hover {
  transform: translateY(-2px);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}
