        :root {
            /* --opeq-primary-color: rgb(20, 13, 151); */
            /* --opeq-primary-text-color: #fff; */
            font-family: Arial, Helvetica, sans-serif;

        }

        #opeq-widget-root {
            display: none;
            flex-direction: column;
            position: fixed;
            right: 20px;
            bottom: 100px;
            border: none;
            width: 100%;
            max-width: 400px;
            height: 650px;
            max-height: calc(90vh - 60px);

            border-radius: 15px;
            box-shadow: 0 0 20px 5px #3333331c;
            overflow: hidden;
            background-color: #fff;
            z-index: 999;
        }


        @keyframes opeq-widget-popup {
            0% {
                transform: scale(0.5);
                opacity: 0;
            }

            100% {
                transform: scale(1);
                opacity: 1;
            }
        }

        #opeq-widget-root.active {
            display: flex;
            animation: opeq-widget-popup 0.25s ease-out;
        }





        #opeq-widget-header {
            height: 40px;
            /* border: 1px solid black; */
            width: 100%;
            background-color: var(--opeq-primary-color);
            padding: 5px;
            position: relative;

        }



        #opeq-widget-logoarea {
            display: flex;
            justify-content: flex-start;
            align-items: center;
            height: 100%;

            width: 200px;
            padding: 2px 10px;
            gap: 10px;
        }


        #opeq-widget-logo {
            display: flex;
            height: 100%;
            aspect-ratio: 1/1;
            border-radius: 50%;
            /* border:1px solid black; */
            background-color: #fff;
            padding: 2px;
            overflow: hidden;

        }

        /* #opeq-widget-logo image {
            height: 100%;
        } */


        #opeq-widget-txt {
            color: var(--opeq-primary-text-color);
            font-weight: bold;
        }

        #opeq-widget-body {
            height: calc(100% - 70px);
        }



        #opeq-widget-footer {
            display: flex;
            flex-direction: column;
            align-items: center;
            width: 100%;
            justify-content: center;
            height: 25px;
            /* border: 1px solid red; */

            background-color: #fff;
        }


        #opeq-widget-footer p {
            font-size: 12px;
            color: #444;
        }

        #opeq-widget-chat-window {
            height: calc(100% - 80px);
            display: flex;
            flex-direction: column;
            overflow-y: scroll;
            padding: 10px 20px;
            /* margin-bottom: 10px; */
        }

        #opeq-widget-chat-input {
            display: flex;
            flex-direction: row;
            /* padding: 5px 10px; */
            justify-content: center;
            align-items: center;

            border-radius: 40px;
            border: 1px solid #7e7e7e5c;
            /* box-shadow: 0 10px 20px rgba(0,0,0,0.2); */
            width: 95%;

            margin: 0 auto;
            height: 50px;
        }


        #opeq-widget-chat-input input {

            width: calc(100% - 100px);
            height: 40px;
            border-radius: 5px;
            border: none;
            outline: none;
            /* padding: 0 5px; */

        }


        #opeq-widget-chat-input #opeq-widget-mic-btn {
            background-color: transparent;
            border: none;
            cursor: pointer;
            color: #555;
            padding: none;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        #opeq-widget-chat-input #opeq-widget-send-btn {
            background-color: transparent;
            border: none;
            cursor: pointer;
            color: #555;
            display: flex;
            justify-content: center;
            align-items: center;

        }


        .opeqmsg {
            display: flex;
            flex-direction: column;
            padding: 8px 15px;
            margin: 8px 0 8px 0;
            font-size: 16px;
        }


        .opeqmsg.user {
            background-color: var(--opeq-primary-color);
            align-self: flex-end;
            padding: 10px 20px;
            border-radius: 18px;
            color: var(--opeq-primary-text-color);
        }

        .opeqmsg.bot {
            background-color: #eee;
            border-radius: 20px;
            max-width: 90%;
            align-self: flex-start;
        }

        .OPEQbottools {
            display: flex;
            flex-direction: row;
            align-items: center;
            justify-content: flex-end;
            /* border: 1px solid black; */


        }

        .opeq-speech-button {
            padding: 0;
            height: 20px;
            width: 20px;
            border: none;
            cursor: pointer;
        }


        .opeq-speech-button svg {
            fill: #333;
        }


        #opeqClose {
            display: flex;
            position: absolute;
            right: 20px;
            top: 10px;
            color: var(--opeq-primary-text-color);
            height: 30px;
            aspect-ratio: 1/1;
            cursor: pointer;
        }

        #opeqClose svg {
            height: 100%;
            width: 100%;
        }


        @keyframes _opeqVoice_pulse {
            0% {
                transform: scale(1);
                opacity: 1;
            }

            50% {
                transform: scale(1.2);
                opacity: 0.7;
            }

            100% {
                transform: scale(1);
                opacity: 1;
            }
        }

        ._opeqVoice-active {
            animation: _opeqVoice_pulse 1s infinite;
        }

        @media screen and (max-width:700px) {
            #opeq-widget-root {
                bottom: 0;
                right: 0;
                width: 100%;
            }
        }


        #opeq-widget-toggle {
            position: fixed;
            bottom: 30px;
            right: 50px;
            height: 50px;
            width: 50px;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            background-color: var(--opeq-primary-color);
            z-index: 998;

        }


        .opeq-widget-icon {
            height: 100%;
            width: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 10px;

        }

        .opeq-widget-icon svg {
            width: 100%;
            height: 100%;
            fill: var(--opeq-primary-text-color);
            margin: 0 auto;
        }

        #opeq-widget-toggle:hover {
            cursor: pointer;
            transition: 0.2s ease-in-out;
            transform: scale(1.1) rotate(10deg);
        }


        .opeqmsg.bot table {
            width: 100%;
            border-collapse: collapse;
            font-family: "Segoe UI", Arial, sans-serif;
            font-size: 14px;
            margin: 10px 0;
            overflow-x: auto;
            display: block;
            border: 1px solid #e5e7eb;
            border-radius: 6px;
        }

        /* Header */
        .opeqmsg.bot table thead th {
            background-color: var(--opeq-primary-color);
            color: var(--opeq-primary-text-color);
            padding: 10px;
            text-align: left;
            font-weight: 600;
            white-space: nowrap;
        }

        /* Body */
        .opeqmsg.bot table tbody td {
            padding: 10px;
            border-top: 1px solid #e5e7eb;
            white-space: nowrap;
        }

        /* Striping */
        .opeqmsg.bot table tbody tr:nth-child(even) {
            background-color: #f9fafb;
        }