.tab-table {
  width: 100%; position: relative; margin-bottom: 20px; padding:20px 0;
  table {
    width: 100%; text-align: center; border-top: 1px solid var(--line-color);
    tr {
      td {
        border: 1px solid var(--line-color); border-top:0; border-right: 0; height: 40px; padding:10px ; width: 33.3%; cursor: pointer; font-size: 1.3rem;
        &:hover {
          background: #f8f8f8;
        }
        &.select {
          background:var(--main-color); color: #fff; 
          &:hover {
            background:var(--main-color); color: #fff; 
          }
        }
        &.emp {
          background:#f3f3f3; cursor: unset;
          &:hover {
            background:#f3f3f3; cursor: unset;
          }
        }
        &:nth-child(3n) {
          border-right: 1px solid var(--line-color);
        }
      }
    }
  }
}

