.cookie-banner {
  position: fixed;
  bottom: 20px;
  right: 20px;
  max-width: 320px;
  background: #fff;
  border: 1px solid #ccc;
  padding: 1em;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
  font-family: sans-serif;
  z-index: 9999;
}

.cookie-content h3 {
  margin-top: 0;
}

.cookie-content label {
  display: block;
  margin: 0.5em 0;
}

.cookie-buttons {
  display: flex;
  justify-content: space-between;
  margin-top: 1em;
}

.cookie-buttons button {
  padding: 0.5em 1em;
  border: none;
  background: #0078d4;
  color: white;
  cursor: pointer;
  border-radius: 4px;
}

.cookie-buttons button:hover {
  background: #005fa3;
}

.cookie-content a {
  display: block;
  margin-top: 1em;
  font-size: 0.9em;
  color: #0078d4;
  text-decoration: underline;
}