.input-control:has(#simpleTextWidthMode option[value="fill"]:checked)
  #simpleTextWidth,
.input-control:has(#simpleTextWidthModeResponsive option[value="fill"]:checked)
  #simpleTextWidthResponsive {
  opacity: 0.5;
  pointer-events: none;
}

.mytextareaSimple {
  width: var(--simple-text-width, 100%);
}

@container (max-width: 1024px) {
  .mytextareaSimple {
    width: var(--simple-text-width-tablet);
  }
}

@container (max-width: 768px) {
  .mytextareaSimple {
    width: var(--simple-text-width-mobile);
  }
}
