/*
#cookieBanner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: #222;
  color: #fff;
  font-size: 0.9rem;
  padding: 1em;
  border-radius: 6px;
  opacity: 0.95;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  z-index: 1000;
}

#cookieBanner label {
  display: block;
  margin-top: 0.5em;
}

#cookieBanner button {
  margin-top: 0.75em;
  background: #fff;
  color: #000;
  border: none;
  padding: 0.4em 0.8em;
  cursor: pointer;
  border-radius: 4px;
}
*/
#cookieBanner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  max-width: 320px;
  background-color: rgba(30, 30, 30, 0.95);
  color: #fff;
  font-family: 'Inter', sans-serif;
  /*font-size: 0.85rem;*/
  padding: 1em 1.1em;
  border-radius: 8px;
  box-shadow: 0 6px 12px rgba(0,0,0,0.2);
  z-index: 1000;
  display: none;
/*  display: block; */
}

.cookie-heading {
  font-size: 1.1rem;
  margin-bottom: 0.5em;
  font-weight: 500;
  color: #f0f0f0;
}

.cookie-text {
  margin-bottom: 0.7em;
  line-height: 1.4;
  opacity: 0.85;
  font-size: 0.8rem;
  font-weight: 300;
  color: white;
}

.cookie-options {
  margin-bottom: 0.9em;
}

.cookie-options label {
  display: block;
  margin-bottom: 0.4em;
  cursor: pointer;
  font-size: 0.8rem;
}

#cookieBanner button {
  background-color: #fff;
  color: #000;
  border: none;
  padding: 0.4em 0.8em;
  font-size: 0.8rem;
  border-radius: 4px;
  cursor: pointer;
}

@media screen and (max-width: 480px) {
  #cookieBanner {
    left: 10px;
    right: 10px;
    bottom: 15px;
/*    font-family: 'Jost', sans-serif; */
    font-size: 0.8rem;
    padding: 0.9em 1em;
    max-width: 90vw;
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
  }

  #cookieBanner button {
    font-size: 0.75rem;
    padding: 0.35em 0.7em;
  }

  .cookie-heading {
    font-size: 0.95rem;
  }

  .cookie-text {
    line-height: 1.4;
  }
}
