
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #222;
  color: #fff;
  padding: 1rem;
  z-index: 1000;
  display: none;
  flex-wrap: wrap;
}
#cookie-banner.show {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#cookie-banner button {
  background: #0d6efd;
  border: none;
  color: white;
  padding: 0.5rem 1rem;
  margin-left: 1rem;
  border-radius: 4px;
  cursor: pointer;
}
