#kodrun-consent {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 2147483000;
  width: min(420px, calc(100vw - 32px));
  padding: 18px;
  border: 1px solid rgba(15, 39, 32, 0.14);
  border-radius: 16px;
  background: #fff;
  color: #10271f;
  box-shadow: 0 18px 60px rgba(15, 39, 32, 0.2);
  font-family: Inter, Arial, sans-serif;
}

#kodrun-consent p {
  margin: 0 0 14px;
  font-size: 14px;
  line-height: 1.55;
}

#kodrun-consent a {
  color: #087b5b;
  text-decoration: underline;
}

.kodrun-consent__actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.kodrun-consent__button {
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid #0f6f55;
  border-radius: 10px;
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}

#kodrun-consent-reject {
  background: #fff;
  color: #0f6f55;
}

#kodrun-consent-accept {
  background: #0f6f55;
  color: #fff;
}

@media (max-width: 600px) {
  #kodrun-consent {
    right: 16px;
    bottom: 16px;
  }

  .kodrun-consent__actions {
    flex-direction: column-reverse;
  }

  .kodrun-consent__button {
    width: 100%;
  }
}
