﻿#staffMessages {
    overflow-y: auto;
    height: 70%;
    scroll-behavior: smooth;
    padding-right: 5px;
}

#staffInput {
    resize: none;
    min-height: 36px;
    max-height: 150px;
}

#openChatsList li.new-message {
    background-color: #eef6ff;
    font-weight: bold;
    position: relative;
}

    #openChatsList li.new-message::after {
        content: '•';
        color: #007bff;
        position: absolute;
        right: 10px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 1.2em;
    }