body.no-scroll { overflow: hidden; }


#cookie-banner[hidden] { display: none !important; }

#cookie-banner {
  position: fixed;
  left: 0px;
  right: 0px;
  bottom: 0px;
  z-index: 11000;

  box-sizing: border-box;
  text-align: center;

  padding: 16px;
  background: rgb(242,242,242);
  color: rgb(0,84,134);
  border-top: 1px solid rgb(204,204,204);
  font-size: 14px;
}


@media (prefers-color-scheme: dark) {
  #cookie-banner {
    background: rgb(60,60,60);
    color: rgb(242,242,242);
    border-top: 1px solid rgb(90,90,90);
  }
}

#cookie-banner #cookie-reject {
  background: rgb(204,27,83);
  border-color: rgb(204,27,83);
  color: rgb(255,255,255);
}

#cookie-banner img {
  height: 70px;
  width: auto;
  display: inline-block;
  margin-bottom: 12px;
}

#cookie-banner p {
  margin: 0px;
  padding: 0px 10px;
  line-height: 20px;
  font-size: 14px;
  color: inherit;
}


#cookie-banner .button-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
}

#cookie-banner button {
  padding: 8px 16px;
  font-size: 14px;
  cursor: pointer;
  border: 1px solid rgb(170,170,170);
  border-radius: 4px;
  color: rgb(255,255,255);
  background: rgb(0,84,134);
}

#cookie-banner button[data-variant="reject"] {
  background: rgb(204,27,83);
  border-color: rgb(204,27,83);
}

#cookie-banner .links {
  margin-top: 12px;
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

#cookie-banner .links a {
  background: transparent !important;
  background-color: transparent !important;
  color: inherit;
  text-decoration: underline;
  font-size: 14px;
}

@media (max-width: 480px) {
  #cookie-banner { padding: 12px; }
  #cookie-banner .links { gap: 10px; }
}
