#cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  max-width: 520px;
  background: #fff;
  color: #333;
  border: 1px solid #ddd;
  border-radius: 12px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.15);
  padding: 20px;
  font-family: Arial, sans-serif;
  z-index: 9999;
  display: none;
}

#cookie-banner p {
  margin: 0 0 15px 0;
  font-size: 14px;
  line-height: 1.5;
}

#cookie-banner button {
  border: none;
  border-radius: 6px;
  padding: 8px 14px;
  margin-right: 10px;
  cursor: pointer;
  font-size: 14px;
  transition: background 0.2s;
}

#cookie-accept {
  background: #2e7d32;
  color: #fff;
}

#cookie-accept:hover {
  background: #1b5e20;
}

#cookie-reject {
  background: #c62828;
  color: #fff;
}

#cookie-reject:hover {
  background: #8e0000;
}
