.main {
  position: fixed;
  bottom: 0;
  right: 0;

  display: flex;
  flex-direction: column;
  align-items: center;

  width: calc(100% - 250px);
  height: calc(100% - 70px);

  padding: 20px;
}

.main .post-editor {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;

  width: 600px;
  height: 350px;

  border-radius: 20px;

  background-color: #fff;

  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);

  > .post_editor-pfp {
    display: flex;
    align-items: center;
    gap: 10px;
    align-self: flex-start;

    margin-top: 10px;
    margin-left: 15px;

    > img {
      width: 50px;
      height: 50px;
      border-radius: 50%;
    }

    > span {
      font-size: 18px;
      color: #333;
    }
  }

  > .post-content {
    min-width: 95%;
    min-height: 150px;

    padding: 10px;

    border: none;
    border-radius: 5px;
    resize: none;

    font-size: 16px;
    color: #333;
    background-color: #e4e7f9;
  }

  > .text-editor {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;

    width: 100%;
    height: 40px;

    padding: 0 15px;
  }
}

.post-editor .text-editor {
  > select {
    width: 150px;
    height: 40px;

    outline: none;
    border: none;
    border-radius: 10px;
    background-color: #e4e7f9;

    font-size: 20px;
    text-indent: 10px;
  }

  > button {
    display: flex;
    align-items: center;
    justify-content: center;

    padding: 10px;
    border: none;
    border-radius: 10px;
    background-color: #e4e7f9;

    width: 40px;
    height: 40px;

    cursor: pointer;
  }
}

.post-editor .post-functions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 95%;
  gap: 10px;

  > .post-btn {
    display: flex;
    align-items: center;
    justify-content: center;

    border: none;
    border-radius: 10px;
    background-color: #e4e7f9;

    width: 100px;
    height: 40px;

    font-size: 20px;

    cursor: pointer;
  }
}

.post-functions .post-func {
  display: flex;
  align-items: center;
  gap: 10px;

  > .post-func-btn {
    display: flex;
    align-items: center;
    justify-content: center;

    padding: 10px;
    border: none;
    border-radius: 10px;
    background-color: #e4e7f9;

    width: 40px;
    height: 40px;

    cursor: pointer;
  }

  > .post-btn {
    display: flex;
    align-items: center;
    justify-content: center;

    border: none;
    border-radius: 10px;
    background-color: #e4e7f9;


    width: 80px;
    height: 40px;

    font-size: 20px;

    cursor: pointer;
  }
}
