    /* COOKIE BANNER STYLING */
.cookie-banner {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #0d131f;
  color: #e6a743;
  padding: 15px;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  z-index: 9999;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.6);
}

.cookie-banner a {
  all: unset;
  color: #e6a743;
  text-decoration: underline;
  margin: 0 4px;
  cursor: pointer;
}

.cookie-buttons {
  margin-top: 10px;
}

/* Cookie banner knoppen in jouw stijl */
.cookie-btn {
  all: unset;
  background-color: #e6a743;
  color: #0d131f;
  border: none;
  padding: 8px 15px;
  margin: 0 5px;
  font-weight: bold;
  border-radius: 4px;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  transition: background-color 0.3s ease;
}

.cookie-btn:hover {
  background-color: #c9952f;
}

.cookie-btn.secondary {
  background-color: transparent;
  border: 2px solid #e6a743;
  color: #e6a743;
}

.cookie-btn.secondary:hover {
  background-color: #292d2d;
}
