body {
  margin: 0;
  padding: 0;
}

#cookie-banner {
  font-family: sans-serif;
  font-size: 18px;
  text-shadow: none;
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  max-width: 400px;
  color: #000000;
  background-color: rgba(255, 255, 255, 0.85);
  border: 1px solid #ccc;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  padding: 20px;
  border-radius: 8px;
  z-index: 9999;
  display: none;
}

#cookie-banner h3 {
  margin-top: 0;
  font-size: 1.2em;
}
#cookie-banner a {
  font-family: sans-serif;
  font-size: 18px;
  text-decoration: underline;
  color: blue;
  text-shadow: none;

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

.cookie-options label {
  display: block;
  margin-bottom: 8px;
}

.cookie-buttons {
  margin-top: 15px;
  display: flex;
  gap: 10px;
}

.cookie-buttons button {
  padding: 8px 12px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 0.9em;
}

.accept {
  background-color: #6c757d;
  color: white;
}

.deny {
  background-color: #6c757d;
  color: white;
}

.save {
  background-color: #6c757d;
  color: white;
}

@media (max-width: 600px) {
  #cookie-banner {
    left: 10px;
    right: 10px;
  }
  cookie-buttons button {
    padding: 8px 1px;
  }
}