       html,
        body,
        input,
        button,
        ul,
        div {
            margin: 0;
            padding: 0;
            list-style: none;
        }

        *,
        *:before,
        *:after {
            -webkit-box-sizing: border-box;
            -moz-box-sizing: border-box;
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html,
        body {
            overflow: hidden;
            width: 100%;
            height: 100%;
        }

        :root {
            scrollbar-width: thin;
        }

        /* div:hover {
            scrollbar-width: thin;
        } */
        .message {
            color: #000;
            padding: 20px;
            border-bottom: 1px solid #aaa;
        }

        .message.sender {
            background-color: #e0f7fa;
            white-space: pre-line;
            /* float: right;
            text-align: right; */
        }

        .message.receiver {
            background-color: #f0f4c3;
            /* float: left;
            text-align: left; */
            white-space: pre-line;
        }

        .chat-window {
            width: 100%;
            height: 100%;
            background-color: rgb(147, 104, 2);
            overflow-y: scroll;
            overflow-x: hidden;
            padding: 0 0px 120px;
            box-sizing: border-box;
            scrollbar-width: none;
        }

        .input-field {
            position: sticky;
            bottom: 0;
            display: flex;
            flex-direction: column;
            justify-content: space-evenly;
            align-items: center;
            padding-bottom: 10px;
        }

        .input-field textarea[type="text"] {
            width: 680px;
            box-sizing: border-box;
            resize: none;
            outline: none;
        }

        .input-field textarea[type="text"]:focus {
            height: 100px;
            scrollbar-width: none;
            padding: 5px;
            padding-right: 100px;

        }

        .send-button {
            padding: 2px;
            float: right;
        }

        .app {
            height: 100%;
            width: 100%;
            background-color: #121212;
            color: #fff;
        }

        .chatbox {
            height: 100%;
            width: 700px;
            margin: 0 auto;
            /* border-left: 3px solid #000;
            border-right: 3px solid #000; */
            box-shadow: -10px 0 5px -5px rgba(0, 0, 0, 0.5), 10px 0 5px -5px rgba(0, 0, 0, 0.5);

        }

        .funbar {
            background-color: rgb(144, 133, 118);
            display: flex;
            flex-direction: row;
            text-decoration: none;
            list-style: none;
            position: relative;
            width: 680px;
            justify-content: flex-end;
            justify-content: flex-end;
            border: 1px solid #333;
            box-sizing: border-box;
        }

        .funbar .button {
            border-left: 1px solid #000000;
            cursor: pointer;
            font-size: small;
            padding: 4px;
            background-color: antiquewhite;
            border-radius: 0;
            color: #000;
            font-size: 10px;

        }

        .funbar .button:hover {
            background-color: rgb(255, 255, 255);
        }

        .funbar .status {
            color: #000;
            flex: 1;
            padding: 4px;
            font-size: 10px;
        }

        .model-list .model-family {
            padding-left: 20px;
        }

        .model-family li {
            cursor: pointer;

        }

        .model-family li:hover {
            text-decoration: underline;
        }

        .button{
            max-width: 150px;
        }