/* Custom resize handles for worksheet textboxes (wrapper version) */
.worksheet-textbox-wrapper {
  box-sizing: border-box;
  min-width: 120px;
  min-height: 40px;
}
.resize-handle {
  position: absolute;
  background: #b9f5d0;
  z-index: 30;
  opacity: 0.7;
  border-radius: 2px;
  transition: background 0.2s;
  pointer-events: auto;
}
.resize-handle-right {
  width: 10px;
  height: 100%;
  right: -5px;
  top: 0;
  cursor: ew-resize;
  display: none;
}
.resize-handle-bottom {
  width: 100%;
  height: 10px;
  left: 0;
  bottom: -5px;
  cursor: ns-resize;
  display: none;
}
.worksheet-textbox-wrapper.selected .resize-handle,
.worksheet-textbox-wrapper:focus-within .resize-handle {
  display: block;
}
