
html{
	font-size: 18px;
	min-width: 1400px;
	/* background-color: azure; */
}
.main{
	width: 100%;
	min-width: 1000px;
	min-height: 10rem;
	padding-bottom: 4rem;
}

.title{
	display: flex;
	align-items: center;
	width: 100%;
	font-size: 25px;
	height: 12rem;
	line-height: 2.5rem;
	text-align: center;
	font-weight: bold;
	z-index: 1;
	margin-bottom: 2rem;
	overflow: hidden;
	justify-content: center;
}
.title>span{
	position: absolute;
	width: 80%;
	z-index: 2;
	color: white;
}
.top-img{
	z-index: 1;
	width: 100%;
	position: relative;
}

a{
	color: black !important;
}

.author{
	width: 80% !important;
	margin: 2rem auto;
	text-align: center;
}
.author span{
	display: block;
	width: 100%;
	background-color: aliceblue;
	/* font-weight: lighter; */
	line-height: 2em;
}

.content{
	width: 100%;
	min-height: 2rem;
}
.section{
	width: 100%;
	min-height: 1rem;
}

.section-title{
	width: 100%;
	min-height: 3rem;
	line-height: 3rem;
	font-size: 20px;
	color: #1D5DA4;
	padding-left: 4rem;
	font-weight: bold;
}

.section-content{
	width: 80%;
	margin: 2rem auto;
	min-height: 3rem;
	border-radius: 5px;
	text-align: justify;
}

.abstract,.experiments .model{
	background-color: aliceblue;
	padding: 2rem 2rem;
}

.model-img{
	width: 100%;
}

.subsection-title{
	width: 100%;
	font-size: 18px;
	height: 2rem;
	line-height: 2rem;
	font-weight: bold;
	margin: 2rem auto;
	color: #1D5DA4;
}
.module-title{
	width: 100%;
	font-size: 18px;
	height: 3rem;
	line-height: 3rem;
	padding-left: 1rem;
	margin: 2rem 0rem;
	/* font-weight: bold; */
	color: #1D5DA4;
}
.module-content{
	width: 100%;
	min-height: 10rem;
	display: flex;
	/* background-color: antiquewhite; */
}

#table_1,#table_2{
	width: 100%;
	table-layout:fixed;
	/* word-break: break-all; */
	/* word-wrap: break-word; */
}

table th, table td {
    border: 1px solid #e9ebec;
	padding: 1em 1em;
}
tr {
    display: table-row;
    vertical-align: inherit;
    border-color: inherit;
}

audio{
	width: 100%;
}

#table_2 .history_audio{
	width: 20% !important;
	display: block;
	margin: 1rem auto;
}

.history{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
.history-title,.current-title{
	margin: 1em auto;
	font-weight: bold;
}

#table_2 span{
	display: block;
	width: 100%;
}

#table_3,#table_4{
	width: 65%;
	table-layout:fixed;
}

.note{
	display: block;
	width: 100%;
	
	min-height: 2rem;
	background-color: #e9ebec;
	margin-bottom: 2rem;
	margin-top: 2rem;
	padding: 1rem 2rem;
	font-size: 1.2rem;
	font-weight: 700;
	line-height: 2rem;
	background-color: aliceblue;
	border-radius: 5px;
}


b {
	color: #2475cc;
}

.container {
	background-color: #007bff;
	min-height: 10REM;
	width: 100%;
	display: flex;
	padding: 0PX;
	margin: 0px;
}

.audio-text {
    background-color: #e0e0e0;
    float: right;
    width:50%;
}

audio {
    width: 100%;
    margin-bottom: 10px;
}
.section{
	width: 100%;
	min-height: 1rem;
}

.section-title{
	width: 100%;
	min-height: 3rem;
	line-height: 3rem;
	font-size: 20px;
	color: #1D5DA4;
	padding-left: 4rem;
	font-weight: bold;
}

.chat-container {
    float: left;
    width: AUTO;
	padding: 30px;
}










.message {
    margin-bottom: 10px;
    display: flex;
}

.your-message .message-content {
    background-color: #e0e0e0;
    border-radius: 10px;
    padding: 10px;
	padding-bottom: 0px;
	margin-bottom: 0px;
	max-width: 80%;
    margin-right: auto;
	margin-left: 20px;
    position: relative;
}

.my-message .message-content {
    background-color: #007bff;
    color: white;
    border-radius: 10px;
    padding: 10px;
	padding-bottom: 0px;
    margin-right: 20px;
	max-width: 80%;
	margin-left: auto;
    position: relative;
}

.message-content::before {
    content: '';
    position: absolute;
    bottom: 0;
    width: 0;
    height: 0;
    border-style: solid;
}

.your-message .message-content::before {
    left: -15px;
	top: 10px;
    border-width: 0px 15px 15px 0;
    border-color: transparent #e0e0e0 transparent transparent;
}

.my-message .message-content::before {
    right: -15px;
	top: 10px;
    border-width: 0px 0 15px 15px;
    border-color: transparent transparent transparent #007bff;
}