.container {
    display: flex;
    flex-direction: row;

    justify-content: center;
    padding-top: 0px;
}

/* ------------ textOverlay ------------ */

#AI_img_div {
    width: 100%;

    position: relative;
}

.textOverlay {
    position: absolute;
    background: transparent;
    padding: 5px;
    height: fit-content;
    width: fit-content;
    min-width: 50px;
    min-height: 20px;
    /* top: 0; */
    /* left: 0; */
    z-index: 3;
    /* text-align: right; */

    max-width: 100%; /* 限制最大寬度不超過 image_generator */
    white-space: nowrap; /* 避免換行 */

    font-weight: bold;
    font-size: 70px;
    font-family: "GenSenRounded2TW_B", "Noto Sans TC", serif;
}

.textOverlay:focus {
    /* outline: none; */
    cursor: text;
}

.textOverlay::before {
    content: attr(data-storke);
    padding: 5px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: -1;
    -webkit-text-stroke: 7px;
    -webkit-text-stroke-color: var(--textStroke);
}

#maxlength_hint {
    font-weight: 700;
    font-size: 16px;
    line-height: 150%;

    /* UI/警告色 */
    color: #F27979;

    display: none;
}

/* ------------ image_generator ------------ */

#image_display_area {
    display: none;
}

#AI_img_area {
    /* display: block; */
    /* margin-top: 16px; */
}

#AI_img_box {
    display: none;
}

#img_AI_with_Txt {
    background-size: contain;
    display: none;
}

.success_generate,
.progress_area {
    display: none;
}

#AI_img_div, 
#img_AI_Canva {
    display: none;
}

/* ------------ Button ------------ */

#Btn_Share_invite
{
    display: none;
}

#Btn_Generate {
    /* display: none; */
}

#redo_Btn,
#Btn_Share
{
    display: none;
}

.edit_Img_menu_Group {
    display: none;
}

#Btn_Share_invite,
#redo_Btn {
    padding: 10px 8px;
}