#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.85);
  color: #fff;
  padding: 18px;
  z-index: 999;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cookie-box {
  max-width: 750px;
  text-align: center;
}
.cookie-buttons {
  margin-top: 10px;
}
.cookie-buttons button {
  margin: 4px;
  padding: 8px 18px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
}
#accept {
  background: #28a745;
  color: #fff;
}
#decline {
  background: #6c757d;
  color: #fff;
}
#accept:hover {
  background: #23923e;
}
#decline:hover {
  background: #5a6268;
}