.container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

table {
  width: 1030px;
  border-collapse: collapse;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

th,
td {
  padding: 15px;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.2);
  color: #000000;
}

th {
  text-align: absolute;
  padding: 15px;
  color: #fffafa;
}

thead {
  th {
    background-color: #fa861a;
  }
}

tbody {
  tr {
    &:hover {
      background-color: rgba(250, 114, 17, 0.3);
    }
  }
  td {
    position: relative;
    &:hover {
      &:before {
        content: '';
        position: absolute;
        left: 0;
        right: 0;
        top: -9999px;
        bottom: -9999px;
        background-color: rgba(250, 114, 17, 0.1);
        z-index: -1;
      }
    }
  }
}
