#dp-consent-banner {
  position: fixed;
  z-index: 99999;
  right: 18px;
  bottom: 18px;
  left: 18px;
  display: flex;
  justify-content: center;
  pointer-events: none;
}

#dp-consent-banner[hidden] {
  display: none !important;
}

.dp-consent-panel {
  width: min(100%, 760px);
  padding: 22px;
  border: 1px solid rgba(0, 0, 0, 0.10);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.18);
  color: #1d1d1f;
  pointer-events: auto;
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.dp-consent-panel h2 {
  margin: 0 0 8px;
  max-width: none;
  color: #1d1d1f;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: -0.025em;
  font-weight: 700;
}

.dp-consent-panel p {
  margin: 0;
  max-width: 650px;
  color: #6e6e73;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.55;
}

.dp-consent-panel a {
  color: #1d1d1f;
  font-weight: 650;
  text-underline-offset: 3px;
}

.dp-consent-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.dp-consent-button {
  appearance: none;
  min-height: 42px;
  padding: 10px 16px;
  border-radius: 999px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-weight: 650;
  cursor: pointer;
}

.dp-consent-button:focus-visible,
.dp-cookie-settings:focus-visible {
  outline: 3px solid rgba(0, 113, 227, 0.35);
  outline-offset: 3px;
}

.dp-consent-accept {
  border: 1px solid #1d1d1f;
  background: #1d1d1f;
  color: #fff;
}

.dp-consent-reject {
  border: 1px solid #d2d2d7;
  background: #fff;
  color: #1d1d1f;
}

.dp-consent-button:hover {
  transform: translateY(-1px);
}

.dp-cookie-settings {
  appearance: none;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  font-size: inherit;
  line-height: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}

@media (max-width: 560px) {
  #dp-consent-banner {
    right: 10px;
    bottom: 10px;
    left: 10px;
  }

  .dp-consent-panel {
    padding: 19px;
    border-radius: 20px;
  }

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

  .dp-consent-button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .dp-consent-button:hover {
    transform: none;
  }
}
