
/* v3.7.316: visual state for feature-disabled header icons.
   Applied via data-feature-disabled="true" attribute set by
   feature scripts when their feature is disabled for the page
   via wtppPageConfig. Reduced opacity signals the disabled
   state; cursor: not-allowed signals non-interactivity; hover/
   focus visual feedback is suppressed since the icon is
   non-interactive. Tooltip and aria-label communicate the
   reason ("X — unavailable for this page"). */
.wtpp-header-icon-btn[data-feature-disabled="true"] {
  opacity: 0.4 !important;
  cursor: not-allowed !important;
}
.wtpp-header-icon-btn[data-feature-disabled="true"]:hover,
.wtpp-header-icon-btn[data-feature-disabled="true"]:focus,
.wtpp-header-icon-btn[data-feature-disabled="true"]:active {
  background: transparent !important;
  outline: none !important;
  color: inherit !important;
}
