body{
    -webkit-text-size-adjust: 100%;
    font-family: Söhne,ui-sans-serif,system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,Noto Sans,sans-serif,Helvetica Neue,Arial,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji;
    line-height: 1.5;
    tab-size: 4;
    color: #374151;
    background-color: #f5f5f5;
}
.container {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    overflow: hidden;
    color: var(--weui-FG-0);
}

.page {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    box-sizing: border-box;
    opacity: 0;
    z-index: 1;
}

.page.js_show {
    opacity: 1;
}
.inputWrapper{
    padding-left: 1rem;
    padding-bottom: .75rem;
    padding-top: .75rem;
    box-shadow: var(--tw-ring-offset-shadow,0 0 transparent),var(--tw-ring-shadow,0 0 transparent),var(--tw-shadow);
    --tw-shadow: 0 0 10px rgba(0,0,0,.1);
    --tw-shadow-colored: 0 0 10px var(--tw-shadow-color);
    --tw-bg-opacity: 1;
    background-color: rgba(255,255,255,var(--tw-bg-opacity));
    border-width: 1px;
    border-radius: .375rem;
    flex-direction: column;
    flex-grow: 1;
    /*width: 100%;*/
    display: flex;
    position: relative;
}
.inputArea{
    max-height: 200px;
    height: 24px;
    overflow-y: hidden;
    padding-left: 0rem;
    padding-right: 1.75rem;
    background-color: transparent;
    border-width: 0;
    /*width: 100%;*/
    margin: 0;
    resize: none;
    font-size: 1rem;
    line-height: 1.5rem;
    border-color: #8e8ea0;
    border-radius: 0;
    --tw-shadow: 0 0 transparent;
    appearance: none;
}
.submitBtn{
    position: absolute;
    right: .5rem;
    bottom: .625rem;
    -webkit-appearance: button;
    background-color: transparent;
    background-image: none;
    text-transform: none;
    margin: 0;
    border-width: 0;
    border-radius: .375rem;
    color: rgb(142, 142, 160);
    padding: .25rem;
    cursor: pointer;
    line-height: 0.5em;
    font-size: 1.2rem;
}
.submitBtn:hover{
    background-color: #ccc;
}
.chatgpt-icon {
    --tw-text-opacity: 1;
    color: rgba(255,255,255,var(--tw-text-opacity));
    background-color: rgb(16, 163, 127);
    display: inline-block;
    width: 30px;
    height: 30px;
    padding: 0.25rem;
    border-radius: 0.125rem;
    justify-content: center;
    align-items: center;
    display: flex;
}

.w-6 {
    width: 1.5rem;
}

.h-6 {
    height: 1.5rem;
}
.user, .chatgpt{
    display: flex;
    flex-direction: row;
    margin-bottom: 1rem;
}
.user{
    justify-content: flex-end;
}
.user-icon{
    margin-left:0.2rem;
}
.user-text{
    background-color: #95ec69;
    padding: 0.5rem;
    border-radius: 0.3rem;
    font-size: 14px;
    position: relative;
    margin-left: 1rem;
    text-align: left;
}
.left-triangle,.right-triangle{
    width: 7px;
    height: 10px;
    position: absolute;
    top: 0.8rem;
}
.right-triangle{
    background-color: #95ec69;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    right: -5px;
}
.left-triangle{
    background-color: #fff;
    clip-path: polygon(0 50%, 100% 0, 100% 100%);
    left: -5px;
}
.chatgpt{
    justify-content: flex-start;
}
.chatgpt-icon{
    margin-right:0.5rem;
}
.chatgpt-text{
    background-color: #fff;
    padding: 0.5rem;
    border-radius: 0.3rem;
    font-size: 14px;
    position: relative;
    margin-right: 1rem;
}
#chat-content{
    padding: 1rem;
    position: relative;
}
#templates{
    display: none;
}
.speaker{
    width: 50px;
    height: 50px;
    border: 1px solid #eee;
    background: center center url("../img/mac.png") no-repeat #eee;
    border-radius: 50px;
    position: absolute;
    padding: 3px 3px;
    top: 0px;
    left: 0px;
    cursor: pointer;
    margin: 0.5rem;
    z-index: 100;
    display: none;
}
.speaker:active, .speaker:hover{
    background: center center url("../img/mac.png") no-repeat #ddd;
}
.textContent{
    color: #374151;
}
.audioContent{
    justify-content: center;
    align-items: center;
    display: flex;
}
.audioContent audio{
    height: 30px;
}
.audioContent + .textContent{
    margin: 5px 5px 0px 5px;
}
.voiceDuration{
    position: fixed;
    z-index: 9;
    background-color: #ececec70;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    display: none;
}
.voiceDuration .seconds{
    position: fixed;
    z-index: 10;
    background-color: #ddd;
    width: 100px;
    height: 100px;
    border-radius: 100px;
    top: 50%;
    left: 50%;
    margin-top: -80px;
    margin-left: -50px;
    text-align: center;
    line-height: 100px;
    font-size: 3rem;
    color: #fff;
    font-weight: bold;
}