.msg {
    opacity: 0;
    margin-left: 10px;
    transition: all 0.2s ease-in-out;
}

.msg-show {
    opacity: 100%;
    margin-left: 0;
}

.placeholder {
    width: 250px;
    height: 250px;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url('https://cdn.discordapp.com/attachments/981828631993135104/1083222332862115952/placehoder.png');
}

.send-options{
    top: -85px;
}

.closeopt{
    cursor: pointer;
}

#chat-area {
    height: calc(var(--app-height) - 175px);
    overflow-y: auto;
    grid-auto-rows: 46px;
    scroll-behavior: smooth;
}

::-webkit-scrollbar {
    width: 3px;
}

::-webkit-scrollbar-thumb {
    background: #374151;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #2e3744;
}

::-webkit-scrollbar-thumb:active {
    background: #202630;
}

.options{
    pointer-events: none;
    opacity: 0;
    transition: all 0.1s ease-in-out;
}

.options-show{
    pointer-events: auto;
    opacity: 100%;
}

.loading{
    margin: 6px;
}