/* quill and new post*/

 .fa-100 {
    font-size: 100px;
  }

  .upload-img-flex {
    display: flex;
    align-content: center;
    justify-content: center;
    flex-direction: column;
    align-items: center;
  }

  .margin-top-20 {
    margin-top: 20px;
  }

  #title-wrapper {
    display: flex;
    justify-content: center;

  }

  #title-wrapper input {
    background-color: transparent;
    border: 0px;
    border-bottom: 1px solid gray;
    font-size: 50px;
    text-align: center;
    padding-bottom: 0px;
    margin-bottom: 20px;
  }


 #img_preview_wrap {
        display: flex;
        justify-content: center;

      }

      #img_preview {
        width: 500px;
        height: 500px;
        background-size: cover;
        border-radius: 50px;
        border: 1px solid;
      }

#select-folder-wrapper {
        display: flex;
        justify-content: center;
        margin-bottom: 20px;
      }

      #select-folder-wrapper select {
        text-align: center;

        width: 500px;
        border-radius: 50px;
      }

      #tags-wrapper {
        margin-bottom: 20px;
        text-align: center;
        display: flex;
        justify-content: center;
      }

      #tags-wrapper input {}

      .ql-toolbar {
        border-radius: 50px 50px 0px 0px;
        /* 					display: flex;
					justify-content: flex-start;
					align-content: center;
					flex-wrap: wrap;
					flex-direction: row; */
      }

      #ql_editor {
        border-radius: 0px 0px 50px 50px;


      }


.upload-img-flex {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;  /* Force the width */
    height: 100px; /* Force the height */
    text-align: center;
    border: 1px dashed #ccc; /* Optional: makes it look like an upload box */
    flex-shrink: 0; /* Prevents it from being squished */
    flex-grow: 0;   /* Prevents it from expanding */
}

/* Ensure the icon/text inside doesn't bloat the container */
.upload-img-flex .fa {
    font-size: 16px; /* Adjust as needed */
