.dl-consent-panel {
  position: fixed;
  z-index: 10000;
  left: 18px;
  right: 18px;
  bottom: 18px;
  width: min(980px, calc(100% - 36px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  padding: 20px;
  border: 1px solid rgba(32, 217, 255, 0.42);
  border-radius: 18px;
  background: rgba(5, 15, 27, 0.98);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.55);
  color: #fff;
}
.dl-consent-panel[hidden] { display: none !important; }
.dl-consent-copy { min-width: 0; }
.dl-consent-copy h2 { margin: 0 0 7px; font-size: 1.2rem; }
.dl-consent-copy p { margin: 0; color: #a8c8e8; line-height: 1.55; }
.dl-consent-copy a { color: #20d9ff; }
.dl-consent-eyebrow {
  margin-bottom: 5px !important;
  color: #20d9ff !important;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.13em;
}
.dl-consent-actions { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 9px; }
.dl-consent-actions button,
.dl-consent-settings {
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid rgba(32, 217, 255, 0.42);
  border-radius: 11px;
  background: rgba(32, 217, 255, 0.08);
  color: #eaf8ff;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}
.dl-consent-actions button:hover,
.dl-consent-settings:hover { background: rgba(32, 217, 255, 0.16); }
.dl-consent-actions button[data-dl-consent="all"] {
  border-color: rgba(45, 232, 146, 0.58);
  background: rgba(45, 232, 146, 0.12);
}
.dl-consent-settings {
  min-height: auto;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: inherit;
  text-decoration: underline;
}
@media (max-width: 760px) {
  .dl-consent-panel { grid-template-columns: 1fr; bottom: 10px; padding: 16px; }
  .dl-consent-actions { justify-content: stretch; }
  .dl-consent-actions button { flex: 1 1 100%; }
}
