.sentence-view-container {
  .body {
    overflow-x: scroll;
    overflow-y: hidden;
    max-width: 100vw;

    .table {
      width: 100%;
      margin-bottom: 8px;
      border-collapse: collapse;

      tbody {
        tr {
          td {
            padding: 2px;
            min-width: 5vw;
            text-align: center;
            white-space: nowrap;
            border: 1px solid var(--border-subtle-2);
            line-height: 32px;

            &.edited {
              background-color: var(--layer-hover-1);
            }

            &:first-child {
              font-weight: bolder;
              padding: 0px 8px;
            }

            &.split {
              .dot {
                border: none;
                float: right;
                padding: 1px 1px 0px;
                display: flex;

                svg {
                  height: 10px;
                  width: 10px;
                }
              }
            }
          }
        }
      }

      &.table-striped {
        tbody tr:nth-of-type(odd) {
          background-color: var(--layer-hover-1);
        }
      }
    }
  }
}

@media (max-width: 768px) {
  .sentence-view-container .body .table tbody tr td {
    min-width: 8vw;
  }
}

@media (max-width: 768px) {
  .sentence-view-container .body .table tbody tr td {
    min-width: 10vw;
  }
}

@media (max-width: 767px) {
  .sentence-view-container .body .table tbody tr td {
    min-width: 16vw;
  }
}
