/* Consent Banner Styles */
#consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1f2937;
  color: #fff;
  padding: 1rem;
  z-index: 9999;
  display: none;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}

#consent-banner.show {
  display: block;
}

#consent-banner a {
  color: #93c5fd;
}

#consent-banner a:hover {
  color: #fff;
}
