body {
  background-color: #f8f9fa;
}

/* Cookie banner always at bottom */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0; /* ✅ ensures it sticks at the bottom */
  width: 100%;
  background: #212529;
  color: #fff;
  padding: 10px;
  text-align: center;
  display: none;
  z-index: 9999; /* stays on top of other content */
}
