/* Prevent invisible anchors/labels inside tab panels from hijacking taps */
.tab-panel a,
.tab-panel label,
.tab-content a,
.tab-content label {
  pointer-events: none;
}

/* Keep the actual tab controls clickable */
.tabs button,
.tabs button * {
  pointer-events: auto;
}

/* Ensure iframe container isn't clipped (Safari treats clipped iframes oddly) */
.tab-content,
.tab-panel {
  overflow: visible !important;
}

/* Make sure YouTube iframe itself can receive pointer events */
.tab-panel iframe[src*="youtube.com"],
.tab-content iframe[src*="youtube.com"] {
  pointer-events: auto;
  -webkit-tap-highlight-color: rgba(0,0,0,0);
}