/* NADLAB Cookie Notice */

.nadlab-cookie-notice {
  position: fixed;
  z-index: 99980;
  inset-inline: 18px;
  bottom: 18px;
  display: none;
  justify-content: center;
  pointer-events: none;
}

.nadlab-cookie-notice.is-visible {
  display: flex;
}

.nadlab-cookie-notice__card {
  width: min(760px, 100%);
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 16px 18px;
  border: 1px solid rgba(229, 231, 235, 0.92);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.97);
  color: #111827;
  box-shadow: 0 20px 55px rgba(15, 23, 42, 0.18);
  pointer-events: auto;
}

.nadlab-cookie-notice__text {
  margin: 0;
  flex: 1;
  font-size: 14px;
  line-height: 1.65;
}

.nadlab-cookie-notice__text a {
  color: #e11d2f;
  font-weight: 700;
  text-decoration: none;
}

.nadlab-cookie-notice__text a:hover {
  text-decoration: underline;
}

.nadlab-cookie-notice__button {
  flex: 0 0 auto;
  min-height: 42px;
  padding: 0 20px;
  border: 0;
  border-radius: 999px;
  background: #e11d2f;
  color: #ffffff;
  font: inherit;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(225, 29, 47, 0.22);
}

.nadlab-cookie-notice__button:focus-visible {
  outline: 3px solid #f59e0b;
  outline-offset: 3px;
}

html.nadlab-a11y-contrast .nadlab-cookie-notice__card {
  background: #000000 !important;
  color: #ffffff !important;
  border-color: #ffffff !important;
}

html.nadlab-a11y-contrast .nadlab-cookie-notice__text a {
  color: #ffff00 !important;
}

@media (max-width: 720px) {
  .nadlab-cookie-notice {
    inset-inline: 12px;
    bottom: 12px;
  }

  .nadlab-cookie-notice__card {
    align-items: stretch;
    flex-direction: column;
    gap: 12px;
    padding: 15px;
    border-radius: 18px;
  }

  .nadlab-cookie-notice__button {
    width: 100%;
  }
}
