

  #uploadAttachments{
    display: flex;
    flex-direction: column;
    row-gap: 1rem;
  }
  
  .blogPreviewContainer {
    display: flex;
    flex-flow: row wrap;
    align-items: flex-start;
    justify-content: flex-start;
    row-gap: 1rem;
    column-gap: 2rem;
  }
  
  .blogPreviewContainer .feedback {
    margin-bottom: 1em;
  }
  
  .blogPreviewContainer > div:first-of-type {
    flex: 0 0 100%;
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: flex-start;
  }
  
  .blogPreviewContainer > div:first-of-type > button {
    margin-left: auto;
  }
  
  .blogPreviewContainer > div:first-of-type > h4 {
    margin-bottom: 0em;
  }
  
  .blogPreviewContainer > .imageCont {
    flex: 0 0 9em;
    
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
    justify-content: flex-start;
    
    row-gap: 0.5rem;
    
  }
  
  .blogPreviewContainer > .imageCont > span {
    margin-bottom: 0.25em;
  }
  
  .blogPreviewContainer > .imageCont > button {
    align-self: center;
    margin-bottom: 0.5em;
  }
  
  .imageOptionsCont {
    width: 100%;
  }
  
  .imageOptionsCont > button {
    width: 100%;
  }
  
  .imageOptions {
    padding: 0.5em;
    border: 1px solid #efefef;
  }
  
  .imageOptions label {
    font-size: 0.6em;
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    justify-content: flex-start;
    margin: 0em 0em 0.5em 0em;
  }
