.qk-page {
    
}

.body-content {
    
}

.chat-container {
    width: 100%;
    height: calc(100vh - 112px);
    background-color: #1f2937;
    display: flex;
    flex-direction: column;
}

@media (min-width: 641px) {
    .chat-container {
        height: calc(100vh - 56px);
        
    }
}

    .chat-container .teacher-image-container {
        padding: 10px;
        width: 80%;
    }

    .chat-container .chat-container-header {
        height: 30px;
    }

    .chat-container .title {
        padding: 5px;
        margin: 0 auto;
        color: white;
        font-size: 18px;
        text-align: center;
    }

    .chat-container .description {
        padding: 5px;
        margin: 0 auto;
        color: white;
        font-size: 12px;
        padding-bottom: 12px;
        text-align: center;
        display: none;
    }

    @media (min-width: 641px) {
        .chat-container .description {
            display: inherit;
        }

        .chat-container .chat-container-header {
            height: 70px;
        }
    }

    .chat-container .start-button {
        margin: 0 auto;
        color: white;
        font-size: 14px;
        text-align: center;
    }

    .chat-container .chats-list {
        overflow-y: scroll;
        flex: 1;
        margin: 5px 0 10px 5px;
        display: flex;
        flex-direction: column;
    }

    @media (min-width: 641px) {
        .chat-container .chats-list {
        }
    }

    .chat-container .message {
        min-width: 40%;
        max-width: 100%;
        margin-top: 10px;
        border-radius: 8px;
        padding: 0 8px 8px 8px;
        color: white;
    }

    @media (min-width: 641px) {
        .chat-container .message {
            max-width: 70%;
        }
    }


    .chat-container .user-message {
        font-weight: 500;
    }

    .chat-container .time-stamp {
        font-style: italic;
        font-size: 12px;
        margin-left: 10px;
    }

    .chat-container .user-name {
        color: #00a800;
        font-style: italic;
        font-size: 15px;
        font-weight: bold;
    }

    .chat-container .agent-message {
        font-weight: 500;
        align-self: flex-start;
    }

    .chat-container .agent-name {
        color: #e80000;
        font-style: italic;
        font-size: 15px;
        font-weight: bold;
    }

    .chat-container .message .msg-text {
        white-space: pre-wrap;
    }

    .system-message {
        background-color: #b96d6d;
        border: 1px solid #872222;
        text-align: center;
    }

    .break-message {
        background-color: #b96d6d;
        border: 1px solid #872222;
        text-align: center;
    }

    .chat-container .chat-input-panel {
        padding: 10px;
        display: flex;
    }

    .chat-container .chat-input {
        flex-grow: 1;
    }

        .chat-container .chat-input input {
            background-color: inherit;
            border: 1px solid #ccc;
            color: white;
            box-sizing: border-box;
            border-radius: 4px;
            outline: none;
            padding: 10px;
            width: 100%;
        }

            .chat-container .chat-input input:enabled:hover {
                box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
            }

    .chat-input-icon {
        color: white;
        width: 35px;
        margin: auto 2px;
        padding: 4px;
    }

