cookie-banner:not(:defined) {
  visibility: hidden;
}

/* container styling, e.g. the content container */
cookie-banner::part(dialog) {
  color: #333;
  font-size: 1.5rem;
  background-color: #fff;
  z-index: 1000;
}

/* text content styling, e.g. the <slot> content */
cookie-banner::part(content) {
  color: #333;
  font-size: 1.5rem;
}

/* nested elements can be styled directly */
cookie-banner h2 {
  font-size: 1.5rem;
  margin-top: 0;
}

cookie-banner p {
  font-size: 1rem;
  line-height: 1.375;
  margin-top: 0;
}

/* button container */
cookie-banner::part(buttons) {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

/* <button> elements */
cookie-banner::part(button) {
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  background-color: #bdbdbd;
  padding: 5px 15px;
  font-size: 1rem;
}

cookie-banner::part(button):hover,
cookie-banner::part(button):focus {
  background-color: #9e9e9e;
}

#privacySettings {
  background: none;
  border: none;
  color: #999696;
  text-decoration: underline;
  cursor: pointer;
  font-size: 1rem;
  padding: 0;
  transition: color 0.1s;
  font: normal normal 12px / 1.5 "futura-bold", Helvetica, Arial, "Lucida Grande", sans-serif;
  text-decoration: none;
  display: block;
}

#privacySettings:hover,
#privacySettings:focus {
  color: #28caca;
}
