:host {
  display: flex;
  flex-direction: column;
  width: 400px;

  .content {
    width: 100%;
    min-height: 300px;
    padding: 0 24px 20px;
  }

  .row {
    display: flex;
    gap: 10px;
  }

  .field-name {
    margin-bottom: 3px;
    font-size: 12px;
    font-weight: 500;
    color: var(--color-gray-888);

    &.required::after {
      content: '*';
      margin-left: 3px;
      color: var(--default-color-red);
    }
  }

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

    width: 100%;
    min-height: 36px;
    margin-bottom: 18px;
    padding: 4px 3px 4px 10px;

    border: 1px solid var(--color-gray-aaa);
    border-radius: 3px;
    outline: none;

    &.error {
      margin-bottom: 0;
    }
  }

  .field.date {
    display: flex;
  }

  input {
    min-width: 0;
    border: none;
    outline: none;

    &:focus {
      outline: none;
    }
  }

  .field-checkbox {
    display: flex;
    gap: 5px;
    align-items: center;
    margin-bottom: 10px;

    input {
      transform: scale(1.3);
    }
  }

  .error-message {
    margin-bottom: 15px;
    font-size: 12px;
    color: var(--default-color-red);
  }

  app-cmf-icon {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .cmf-dialog__footer {
    gap: 10px;
  }
}

app-cmf-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.close-icon {
  margin-left: auto;
}

.info {
  margin-bottom: 10px;
}

.project-name {
  font-weight: bold;
}
