.consent-modal {
  position: fixed;
  inset: 0;
  z-index: 999999999;
  background: rgba(0, 0, 0, 0.65);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.consent-modal.is-active {
  display: flex;
  backdrop-filter: blur(5px);
}

.consent-modal__box {
  max-width: 480px;
  width: 100%;
  background: #fff;
  color: #111;
  border-radius: 18px;
  padding: 28px;
  text-align: center;
}

.consent-modal__actions {
  display: flex;
  gap: 12px;
  flex-direction: column;
}

#consentAccept {
  background-color: #2563eb;
  color: #fff;
}

.consent-modal__actions button {
  flex: 1;
  padding: 12px 16px;
  border: 0;
  border-radius: 10px;
  cursor: pointer;
}
