/* Generic “blocked until consent” look */
body.cky-consent-blocked [data-cky-disabled="1"] {
  opacity: 0.55;
  cursor: not-allowed;
  filter: grayscale(0.2);
}

/* Buttons/inputs that are disabled should not react to hover */
body.cky-consent-blocked button[data-cky-disabled="1"],
body.cky-consent-blocked input[data-cky-disabled="1"],
body.cky-consent-blocked select[data-cky-disabled="1"],
body.cky-consent-blocked textarea[data-cky-disabled="1"] {
  pointer-events: none;
}

/* Anchors being gated */
body.cky-consent-blocked a[data-cky-disabled="1"] {
  text-decoration: none;
}

/* Failsafe for containers you hide */
body.cky-consent-blocked [data-cky-hide="1"] {
  display: none !important;
}
