.cookie-popup {
  position: fixed;
  bottom: 20px;
  right: 20px;
  max-width: 420px;
  background: white;
  color: #111;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  padding: 20px;
  border-radius: 12px;
  z-index: 9999;
  display: none;
  font-family: Arial, sans-serif;
}
.cookie-popup h2 {
  margin-top: 0;
  font-size: 18px;
  font-weight: bold;
}
.cookie-popup p {
  font-size: 14px;
  margin-bottom: 16px;
}
.cookie-buttons button {
  margin: 0 5px 10px 0;
  padding: 8px 16px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
}
#cookie-accept {
  background-color: #004c6d;
  color: white;
}
#cookie-deny,
#cookie-preferences {
  background-color: #eee;
  color: #333;
}
.cookie-links {
  font-size: 13px;
  text-align: right;
}
.cookie-links a {
  color: #004c6d;
  text-decoration: none;
  font-weight: 500;
}
