body {
  background-color: #f8f9fa;
}

/* Client portal background — Worf with beer stein */
body.client-portal {
  background-image: url('/worf.jpg');
  background-size: cover;
  background-position: center top;
  background-attachment: fixed;
  background-repeat: no-repeat;
  min-height: 100vh;
}

/* Keep page content readable over the background */
body.client-portal .navbar .container {
  background: transparent;
  box-shadow: none;
  padding: 0;
}

body.client-portal .container {
  background: rgba(255, 255, 255, 0.88);
  border-radius: 0.5rem;
  padding: 1.5rem;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
}

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

.hover-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12) !important;
}
