﻿  #cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #222;
  color: #fff;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 9999;
}

#cookie-banner p {
  margin: 0;
  font-size: 14px;
}

#cookie-banner a {
  color: #4ea5ff;
  text-decoration: underline;
}

#cookie-banner button {
  background: #4ea5ff;
  border: none;
  padding: 8px 15px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
}

#cookie-banner button:hover {
  background: #3b8de0;
}

