
/* Cookie Banner Styling */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #2d2d2d;
  color: #ffffff;
  padding: 20px;
  box-shadow: 0 -2px 5px rgba(0,0,0,0.2);
  z-index: 1000;
  font-family: Arial, sans-serif;
  display: none;
}
.cookie-banner p {
  margin: 0 0 15px;
  font-size: 16px;
  line-height: 1.5;
}
.cookie-banner a {
  color: #1e90ff;
  text-decoration: underline;
}
.cookie-banner button {
  background-color: #1e90ff;
  color: #ffffff;
  border: none;
  padding: 10px 20px;
  margin: 5px;
  cursor: pointer;
  border-radius: 5px;
  font-size: 14px;
}
.cookie-banner button:hover {
  background-color: #4682b4;
}
.cookie-settings {
  display: none;
  margin-top: 15px;
  padding: 15px;
  background-color: #3c3c3c;
  border-radius: 5px;
}
.cookie-settings label {
  display: block;
  margin: 10px 0;
  font-size: 14px;
}
.cookie-settings button {
  background-color: #32cd32;
}
.cookie-settings button:hover {
  background-color: #228b22;
}
