#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #f5f5f5;
  border-top: 1px solid #ddd;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 1000;
}
#cookie-banner p {
  margin: 0;
  font-size: .875rem;
  color: #333;
}
#cookie-banner button {
  margin-left: .5rem;
  padding: .5rem 1rem;
  border: none;
  border-radius: .375rem;
  cursor: pointer;
  font-size: .875rem;
}
#cookie-banner .accept {
  background-color: #3b82f6;
  color: #fff;
}
#cookie-banner .decline {
  background-color: #9ca3af;
  color: #fff;
}
