/* src/style.css */
.react-resizable {
  position: relative;
}
.react-resizable-handle {
  position: absolute;
  width: 20px;
  height: 20px;
  background-repeat: no-repeat;
  background-origin: content-box;
  box-sizing: border-box;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA2IDYiIHN0eWxlPSJiYWNrZ3JvdW5kLWNvbG9yOiNmZmZmZmYwMCIgeD0iMHB4IiB5PSIwcHgiIHdpZHRoPSI2cHgiIGhlaWdodD0iNnB4Ij48ZyBvcGFjaXR5PSIwLjMwMiI+PHBhdGggZD0iTSA2IDYgTCAwIDYgTCAwIDQuMiBMIDQgNC4yIEwgNC4yIDQuMiBMIDQuMiAwIEwgNiAwIEwgNiA2IEwgNiA2IFoiIGZpbGw9IiMwMDAwMDAiLz48L2c+PC9zdmc+);
  background-position: bottom right;
  padding: 0 3px 3px 0;
}
.react-resizable-handle-sw {
  bottom: 0;
  left: 0;
  cursor: sw-resize;
  transform: rotate(90deg);
}
.react-resizable-handle-se {
  bottom: 0;
  right: 0;
  cursor: se-resize;
}
.react-resizable-handle-nw {
  top: 0;
  left: 0;
  cursor: nw-resize;
  transform: rotate(180deg);
}
.react-resizable-handle-ne {
  top: 0;
  right: 0;
  cursor: ne-resize;
  transform: rotate(270deg);
}
.react-resizable-handle-w,
.react-resizable-handle-e {
  top: 50%;
  margin-top: -10px;
  cursor: ew-resize;
}
.react-resizable-handle-w {
  left: 0;
  transform: rotate(135deg);
}
.react-resizable-handle-e {
  right: 0;
  transform: rotate(315deg);
}
.react-resizable-handle-n,
.react-resizable-handle-s {
  left: 50%;
  margin-left: -10px;
  cursor: ns-resize;
}
.react-resizable-handle-n {
  top: 0;
  transform: rotate(225deg);
}
.react-resizable-handle-s {
  bottom: 0;
  transform: rotate(45deg);
}
.antd-resizable-header {
  position: relative;
}
.antd-resizable-header:last-child .antd-resizable-header__handler {
  right: 0px;
}
.antd-resizable-header__content {
  position: absolute;
  left: 0;
  top: 0;
  background-clip: padding-box;
}
.antd-resizable-header__handler {
  position: absolute;
  right: -5px;
  bottom: 0;
  z-index: 9;
  display: flex;
  justify-content: center;
  width: 10px;
  height: 100%;
  cursor: col-resize;
}
.antd-resizable-header__handler:active,
.antd-resizable-header__handler:hover {
  z-index: 99;
  cursor: col-resize;
}
.antd-resizable-header__handler:active .antd-resizable-header__handler__line,
.antd-resizable-header__handler:hover .antd-resizable-header__handler__line {
  background: var(--resizable-line-background, #000);
  pointer-events: none;
}
.antd-resizable-header__handler__line {
  width: 4px;
  height: 100%;
  border-radius: 8px;
}
.antd-resizable-header__title {
  position: relative;
  z-index: 0;
}
.antd-resizable-header__title--ellipsis {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
