

.right-side{
    width: 500px;
    background-color: white;
    position: fixed;
    z-index: 9999;
    border: 1px solid;
    height: 70%;
    right: 0;
    top: 90px;
}
.robot {
    position: fixed;
    /*z-index: 99;*/
    z-index: 9999;
    right: 0;
    bottom: 90px;
}
.chat-container {
    background-color: #fff;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    height: calc(100% - 72px);
}

.chat-header {
    padding: 16px;
    border-bottom: 1px solid #f5f5f5;
}

.chat-header-button {
    background-color: #3d42df;
    padding: 12px 16px 12px 40px;
    border: none;
    border-radius: 4px;
    color: #fff;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg' fill='%23fff'%3E%3Cpath d='M479.9 187.52l-90.19 68.53v-52.6a20 20 0 00-20-20H20a20 20 0 00-20 20V492a20 20 0 0020 20h349.71a20 20 0 0020-20v-52.6l90.18 68.52c13.05 9.91 32.1.67 32.1-15.92V203.45c0-16.5-18.94-25.92-32.1-15.93zM349.7 472H40V223.45h309.71zM472 451.68l-82.29-62.53V306.3L472 243.77zM87.96 79.24C129.62 28.88 190.86 0 256 0c65.13 0 126.37 28.88 168.03 79.24a20 20 0 01-30.82 25.5A177.6 177.6 0 00256 40a177.6 177.6 0 00-137.21 64.73 20 20 0 11-30.83-25.5zm240.36 32.21a20 20 0 11-21.02 34.03 97.57 97.57 0 00-51.3-14.53 97.6 97.6 0 00-51.31 14.53 20 20 0 11-21.02-34.03A137.53 137.53 0 01256 90.95c25.59 0 50.6 7.09 72.32 20.5zm0 0'/%3E%3C/svg%3E%0A");
    background-repeat: no-repeat;
    background-position: center left 12px;
    background-size: 16px;
    font-size: 14px;
}

.chat-area {
    flex: 1;
    overflow-y: auto;
    padding: 16px;
}

.profile-picture {
    border-radius: 8px;
    width: 32px;
    height: 32px;
    overflow: hidden;
    margin-right: 12px;
    flex-shrink: 0;
}
.profile-picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.message-wrapper {
    display: flex;
}

.name {
    margin: 0;
    line-height: 16px;
    font-size: 12px;
    font-weight: 700;
    color: #2c303a;
}

.message {
    margin-top: 8px;
    background-color: #f3f4f9;
    padding: 8px 16px;
    border-radius: 0 12px 12px 12px;
    font-size: 12px;
    line-height: 16px;
    max-width: calc(100% - 32px);
    color: #2c303a;
}

.message-wrapper {
    padding: 16px 0;
}

.chat-typing-area-wrapper {
    padding: 16px;
}

.chat-typing-area {
    display: flex;
    border-radius: 10px;
    padding: 8px;
    box-shadow: 0 2px 6px 0 rgba(136, 148, 171, 0.2), 0 24px 20px -24px rgba(71, 82, 107, 0.1);;
    background-color: #fff;
}
.dark .chat-typing-area {
    box-shadow: none;
}

.chat-input {
    border: none;
    font-size: 14px;
    line-height: 24px;
    outline: none;
    color:#2c303a;
    flex: 1;
    background-color: #fff;
}
.chat-input:placeholder {
    color: #fff;
}

.send-button {
    color: #fff;
    background-color: #6f74ff;
    border-radius: 8px;
    border: none;
    width: 32px;
    height: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.send-button svg {
    width: 20px;
    height: 20px;
}
.message-wrapper.reverse {
    flex-direction: row-reverse;
}
.message-wrapper.reverse .message {
    width: 100%;
    background-color: #3d42df;
    min-width: 80px;
    color: white;
    margin-left: auto;
    border-radius: 16px 0px 16px 16px;
}
.message-wrapper.reverse .profile-picture {
    margin-right: 0px;
    margin-left: 12px;
}
.message-wrapper.reverse .name {
    text-align: right;
}
