
.chatStyle {
    max-width: var(--widthSite);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.chatStyle form{
    width: 100%;
}
.chatStyle form button{
    width: 100%;
    height: 40px;
    line-height: 40px;
    background-color: var(--Primary-500);
    border: none;
    font-size: var(--font16);
    font-weight: 600;
    border-radius: var(--border-radius8);
    padding: 0!important;
}
.chatStyle>div{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    gap: 4px;
    margin-top: var(--m20);
}
.chatStyle div div{
    width: 96%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: var(--Primary-50);
    padding: var(--p8);
    border-radius: var(--border-radius8);
}
.chatMe{
    background-color: var(--Primary-200)!important;
    width: 100%!important;
}
.chatStyle div h4{
    width: 100%;
    text-align: right;
    font-size: var(--font20);
    font-weight: 600;
    color: var(--Accent-900);
}
.chatStyle div h4 svg {
    width: 24px;
    height: 24px;
    fill: var(--Accent-800);
}
.chatStyle div p{
    width: 100%;
    text-align: right;
    font-size: var(--font16);
    font-weight: 400;
    color: var(--Accent-800);
    white-space: pre-wrap;
}
.chatStyle div span{
    width: 100%;
    text-align: left;
    font-size: var(--font14);
    font-weight: 400;
    color: var(--Accent-800);
}
