.spread-sheet {
  position: relative;
  width: 100%;
  height: 100%;

  .data-sheet-wrapper {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
  }

  :global(.spread-sheet-table) {
    border-collapse: collapse;
    table-layout: fixed;
    white-space: nowrap;
    empty-cells: show;
    border-top: 0px solid transparent;
    border-left: 1px solid #ccc;
    border-right: 1px solid transparent;
    border-bottom: 0px solid transparent;
    background-color: #fff;
    width: 0;
    -webkit-border-horizontal-spacing: 0px;
    -webkit-border-vertical-spacing: 0px;

    tr {
      td {
        user-select: none;
        border: 1px solid #ccc;
        padding: 4px;
        cursor: pointer;
        overflow: hidden;
        box-sizing: border-box;
      }
    }
  }
}
