
.ModsManagement-cards {
  display: flex;
  flex-direction: column;
  gap: 4px;

  & > div {
    display: grid;
    grid-template-columns: 1fr auto;
    padding-top: 0.25em;
    padding-left: 0.25em;

    & > :last-child {
      display: flex;
      flex-direction: column;
      align-items: flex-end;
    }

    header {
      display: flex;
      align-items: center;
      gap: 0.25em;
    }
  }
}

.ModsManagement-modicon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background-color: #222;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;

  &.default:after {
    display: block;
    content: '?';
    opacity: 0.2;
  }
}
