.rp-consent,
.rp-consent-reopen {
  font-family: Arial, Helvetica, sans-serif;
}

.rp-consent {
  position: fixed;
  inset: 0;
  z-index: 2147483000;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 18px;
  background: rgba(3, 13, 36, .56);
}

.rp-consent__panel {
  box-sizing: border-box;
  width: min(760px, 100%);
  max-height: min(84vh, 540px);
  overflow: auto;
  border: 1px solid rgba(214, 167, 97, .65);
  border-radius: 14px;
  background: #fff;
  color: #111827;
  box-shadow: 0 18px 60px rgba(0, 0, 0, .28);
  padding: 20px;
}

.rp-consent__title {
  display: block;
  margin: 0 0 8px;
  color: #000d2b;
  font-size: 19px;
  line-height: 1.3;
}

.rp-consent__text {
  margin: 0 0 10px;
  font-size: 14px;
  line-height: 1.55;
}

.rp-consent__privacy {
  color: #364f88;
  font-size: 13px;
  text-decoration: underline;
}

.rp-consent__details {
  margin: 12px 0;
  border-radius: 8px;
  background: #f3f5f8;
  padding: 12px;
  font-size: 14px;
}

.rp-consent__details label {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  cursor: pointer;
}

.rp-consent__checkbox {
  width: 18px;
  height: 18px;
  margin: 1px 0 0;
  flex: 0 0 auto;
}

.rp-consent__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
  margin-top: 16px;
}

.rp-consent__actions button,
.rp-consent-reopen {
  min-height: 42px;
  border: 1px solid #9aa4b2;
  border-radius: 8px;
  background: #fff;
  color: #000d2b;
  padding: 9px 14px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.rp-consent__actions button:focus-visible,
.rp-consent-reopen:focus-visible {
  outline: 3px solid #4c8bf5;
  outline-offset: 2px;
}

.rp-consent__actions .rp-consent__primary {
  border-color: #d6a761;
  background: #d6a761;
  color: #000d2b;
}

.rp-consent-reopen {
  position: fixed;
  left: 8px;
  bottom: 8px;
  z-index: 2147482000;
  min-height: 32px;
  border-color: rgba(255, 255, 255, .45);
  background: rgba(0, 13, 43, .94);
  color: #fff;
  padding: 5px 9px;
  font-size: 11px;
  line-height: 1.2;
  box-shadow: 0 2px 10px rgba(0, 0, 0, .18);
}

@media (max-width: 560px) {
  .rp-consent { padding: 10px; }
  .rp-consent__panel { padding: 16px; }
  .rp-consent__actions { display: grid; grid-template-columns: 1fr 1fr; }
  .rp-consent__actions button { width: 100%; }
  .rp-consent__actions .rp-consent__primary { grid-column: 1 / -1; }
  .rp-consent-reopen { bottom: 62px; max-width: 118px; }
}

@media (prefers-reduced-motion: reduce) {
  .rp-consent *, .rp-consent-reopen { scroll-behavior: auto !important; transition: none !important; }
}
