/* Basic styling for the GDPR cookie consent banner */
#gdpr-cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  z-index: 1000;
}

#gdpr-cookie-banner a {
  color: #ffffff;
  text-decoration: underline;
}

#gdpr-cookie-banner button {
  background-color: #ffffff;
  color: #333333;
  border: none;
  border-radius: 4px;
  padding: 10px 20px;
  margin-left: 10px;
  cursor: pointer;
  font-size: 14px;
}

#gdpr-cookie-banner button:hover {
  background-color: #cccccc;
}
