table {
  width: 100%;
  border-collapse: collapse;
  box-shadow:
    0 1px 3px rgba(0, 0, 0, 0.12),
    0 1px 2px rgba(0, 0, 0, 0.24);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  border-radius: 0;
  background: #ffffff;

  & th,
  td {
    padding: 10px;
    white-space: nowrap;
    text-align: left;
  }
  & th {
    font-weight: bold;
  }
  & tr {
    border-bottom: 1px solid #ebebeb;
  }
  & tr:last-of-type {
    border-bottom: unset;
  }

  & .user-images {
    display: flex;
    align-items: center;
    height: 55px;
    & img:last-of-type {
      margin-right: 15px;
    }
    & img:first-of-type {
      margin-left: 0;
    }
    & img {
      margin-left: -10px;
      border-radius: 30px;
      width: 30px;
      height: 30px;
      object-fit: cover;
      object-position: center;
      border: 2px solid var(--secondary-color);
    }
  }
}
.destroy-action {
  display: flex;
  justify-content: center;
}

@media (max-width: 768px) {
  table {
    overflow-x: auto;
  }
}