.chat-container {
    height: 73vh;
    overflow-y: scroll;
    display: flex;
    flex-direction: column;
    z-index: 0.5;
   
}
.chat-box {
    background: linear-gradient(107.69deg, #FFE4FA 0%, #e2effd75 24.16%, #FBEEFF 49.48%, #EEF0FF 100%);
    border: 1px solid #F8F8F8;
    box-shadow: 0px 0px 70px 24px #ffeefca3;
    border-radius: 11px;
    padding: 20px;
    bottom: 25px;
    width: fit-content;
    left: 26px;
    max-width: 700px;
}
.chat-box.right {
   right: 26px;
   left: auto;
}
.chat-img
{
    z-index: 1;
}
.prompt-card
{
    padding: 15px;
    background: #fff;
    border-radius: 6px;
    flex: 0 0 calc(33.33% - 10px);
    color: #808080;
    cursor: pointer;
}

.prompt-card.active,
.prompt-card:focus,
.prompt-card:hover
{
    padding: 15px;
    background: linear-gradient(94.22deg, #5C91F7 1.75%, #865BE7 102.67%);
    border-radius: 6px;
    flex: 0 0 calc(33.33% - 10px);
    color: #ffffff;
}
.prompt-card.active img,
.prompt-card:focus img,
.prompt-card:hover img
{
    filter: invert(98%) sepia(1%) saturate(0%) hue-rotate(146deg) brightness(400%) contrast(100%);
}
.prompt-grid
{
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    max-width: 600px;
    gap: 15px;
}
.prompt-card-img {
    width: 14px;
    height: 14px;
    object-fit: contain;
}
.outgoing-content
{
    justify-content: right;
}
.chat-form-field
{
    height: 65px;
    border-radius: 10px;
}
.chat-form-content
{
    bottom: 25px;
}
.er-snippet
{
    resize: none;
    width: 360px !important;
    border-radius: 6px;
    border: none;
    border-top:5px solid #7A44E3;
}
.er-snippet:focus
{
  outline: none !important;
}
.chat-box-btns
{
    left: 60px;
    bottom: -20px;
}