.rd-consent {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 980px;
  margin: 0 auto;
  padding: 18px 20px;
  border: 1px solid rgba(15, 23, 42, .12);
  border-radius: 18px;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 20px 55px rgba(15, 23, 42, .16);
  backdrop-filter: blur(18px);
}

.rd-consent-copy {
  min-width: 0;
}

.rd-consent-copy strong {
  display: block;
  margin-bottom: 4px;
  color: #101828;
  font-size: 15px;
}

.rd-consent-copy p {
  margin: 0 0 5px;
  max-width: 690px;
  color: #667085;
  font-size: 13px;
  line-height: 1.5;
}

.rd-consent-copy a {
  color: #344054;
  font-size: 12px;
}

.rd-consent-actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.rd-consent-actions button,
.rd-consent-settings {
  appearance: none;
  border-radius: 10px;
  font: inherit;
  font-size: 13px;
  font-weight: 650;
  cursor: pointer;
}

.rd-consent-primary {
  border: 1px solid #111827;
  background: #111827;
  color: #fff;
  padding: 10px 14px;
}

.rd-consent-secondary {
  border: 1px solid #d0d5dd;
  background: #fff;
  color: #344054;
  padding: 10px 14px;
}

.rd-consent-settings {
  position: fixed;
  left: 14px;
  bottom: 14px;
  z-index: 9999;
  border: 1px solid #d0d5dd;
  background: rgba(255, 255, 255, .94);
  color: #475467;
  padding: 7px 10px;
  box-shadow: 0 6px 20px rgba(15, 23, 42, .08);
}

@media (max-width: 720px) {
  .rd-consent {
    left: 12px;
    right: 12px;
    bottom: 12px;
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }

  .rd-consent-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 430px) {
  .rd-consent-actions {
    grid-template-columns: 1fr;
  }
}
