.container {
    display: flex;
    flex-direction: row;

    justify-content: center;
	padding-top: 0px;
}

/* Upload Image*/


.img-area {
	position: relative;
	width: 100%;
	aspect-ratio: 1/1;
	/* height: fit-content; */
	/* background: #dfdfdf;
	margin-bottom: 30px; */
	border-radius: 13px;
	overflow: hidden;
	display: none;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}

.img-area img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	/* z-index: 100; */
}
.img-area::before {
	content: attr(data-img);
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, .5);
	color: #fff;
	font-weight: 500;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
	pointer-events: none;
	opacity: 0;
	transition: all .3s ease;
	z-index: 200;
}
.img-area.active:hover::before {
	opacity: 1;
}

#upload_img {
	display: none;
}

#select-image {

	margin-top: 24px;

	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	padding: 10px 18px;
	gap: 10px;

	width: 170px;
	height: 48px;

	/* 漸層 綠 */
	background: linear-gradient(180deg, #B1BF34 0%, #3F8243 100%);
	/* M3/Elevation Light/1 */
	box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.3), 0px 1px 3px 1px rgba(0, 0, 0, 0.15);
	border-radius: 16px;

	font-weight: 700;
	font-size: 20px;
	line-height: 150%;

	/* UI/輔色 */
	color: #FFFFFF;
}

#select-image:hover, .select-image:disabled {
    color: #70391D;
    background: #F0F0F0;
    border: 0px;
}

/* ------------ image_generator ------------ */

#input_area {
	height: 80px;
}

#input_prompt {
    /* height: 50%; */
	display: inline-block;
}

#image_display_area {
    display:none;
}

#AI_img_area {
	display: flex;
}

#AI_img_box {
    /* display: none; */
}

.notice_content {
	display: flex;
}

/* #upload_img_area, */
#selectPosition,
#input_message_area,
#img_AI_with_Txt,
#img_AI {
    display: none;
}

.textOverImage {
	white-space: normal; /* 禁用 nowrap，允许换行 */
    word-wrap: break-word; /* 旧版属性，适用于所有浏览器 */
    overflow-wrap: break-word; /* 新版标准，现代浏览器 */
    max-width: 100%; /* 限制宽度为容器宽度 */
	width: max-content;

	position: absolute;
	text-align: center;
	line-height: 50px;
	padding: 10px;
	color: #D2691E;
	font-weight: bold;
	text-shadow: 0.000em 0.075em #FFFFFF, 0.029em 0.069em #FFFFFF, 0.053em 0.053em #FFFFFF, 0.069em 0.029em #FFFFFF, 0.075em 0.000em #FFFFFF, 0.069em -0.029em #FFFFFF, 0.053em -0.053em #FFFFFF, 0.029em -0.069em #FFFFFF, 0.000em -0.075em #FFFFFF, -0.029em -0.069em #FFFFFF, -0.053em -0.053em #FFFFFF, -0.069em -0.029em #FFFFFF, -0.075em -0.000em #FFFFFF, -0.069em 0.029em #FFFFFF, -0.053em 0.053em #FFFFFF, -0.029em 0.069em #FFFFFF;
}

/* ------------ Button ------------ */

.success_generate,
#re_select_image,
.edit_Img_menu_Group,
#Btn_Next,
#Btn_Generate,
#Btn_Share_invite,
#redo_Btn {
    display: none;
}

#Btn_Share_invite,
#redo_Btn {
    padding: 10px 8px;
}