.dialog__body {
  display: flex;
  flex-direction: column;
  min-width: 70vw;
  min-height: 60vh;

  .cmf-dialog__content {
    display: flex;
    flex: 1;
    flex-direction: column;

    app-cmf-crud-list-widget {
      flex: 1;
    }

    .fields-wrapper {
      display: grid;
      grid-template-columns: 50% 50%;
    }
  }

  .cmf-dialog__header {
    display: flex;
    align-items: center;
    justify-content: space-between;

    p {
      margin: 0;
    }
  }

  .cmf-dialog__footer {
    gap: 10px;
  }

  .close__dialog {
    cursor: pointer;
  }

  .crud-wrapper {
    margin-top: 10px;
  }

  .token-input {
    margin-bottom: 15px;
  }

  .grid {
    display: grid;
    grid-template-columns: 50px auto auto auto auto;
  }

  .grid__cell {
    display: flex;
    align-items: center;

    height: 40px;
    padding: 10px;

    border-top: 1px solid var(--color-gray-eee);
  }

  .grid__header {
    padding: 10px;
    font-weight: bold;
  }
}
