.ProseMirror .tableWrapper {
  overflow-x: auto;
}
.ProseMirror table {
  border-collapse: collapse;
  table-layout: fixed;
  overflow: hidden;
}
.ProseMirror table > caption {
  background-color: #888;
  color: white;
  font-weight: bold;
}
.ProseMirror table > thead,
.ProseMirror table > tfoot {
  border-left: 1rem solid #ccc;
}
.ProseMirror table > tbody:nth-child(odd) {
  border-left: 1rem solid #ffffd0;
}
.ProseMirror table > tbody:nth-child(even) {
  border-left: 1rem solid #d0ffff;
}
.ProseMirror td,
.ProseMirror th {
  vertical-align: top;
  box-sizing: border-box;
  position: relative;
}
.ProseMirror .column-resize-handle {
  position: absolute;
  right: -2px;
  top: 0;
  bottom: 0;
  width: 4px;
  z-index: 20;
  background-color: #adf;
  pointer-events: none;
}
.ProseMirror.resize-cursor {
  cursor: ew-resize;
  cursor: col-resize;
}
/* Give selected cells a blue overlay */
.ProseMirror .selectedCell:after {
  z-index: 2;
  position: absolute;
  content: '';
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(200, 200, 255, 0.4);
  pointer-events: none;
}
