<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">body {
    background-color: #e7ebee;
    font-family: Arial;
    position: relative;

}

.content {
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    text-align: center;
    margin: 0 auto;
    /* max-width: 500px; */
    width: 500px;
    position: relative;
    padding-top: 20px;
}

.logo img {
    margin: 0 auto;
    max-width: 100%;
    max-height: 100%;
}

.search {
    text-align: center;
    position: relative;
    width: 400px;
    max-width: 100%;
    margin: 0 auto;
}

.search input[type=TEXT] {
    padding: 10px 115px 10px 15px;
    border-radius: 20px;
    outline: none;
    /* border: 1px solid lightgrey; */
    border: 1px solid transparent;
    width: 100%;
    height: 36px;
    max-width: 100%;
    box-sizing: border-box;
    -webkit-box-shadow: 0 0 5px rgba(200, 200, 200, 1);
    -moz-box-shadow: 0 0 5px rgba(200, 200, 200, 1);
    box-shadow: 0 0 5px rgba(200, 200, 200, 1);
}

.search input[type=TEXT]:active,
.search input[type=TEXT]:focus {
    border: 1px solid lightgrey;
}

.search i.fa-x {
    position: absolute;
    right: 10px;
    top: 11px;
    color: grey;
    cursor: pointer;

}

.search i.fa-magnifying-glass-chart {
    position: absolute;
    left: 10px;
    top: 11px;
    color: grey;
    cursor: pointer;

}

.buttons {
    text-align: center;
    margin: 10px 0;
    display: inline-block;
    width: 75px;
    position: absolute;
    bottom: -7px;
    right: -3px;
}

.buttons button {
    background-color: white;
    border-radius: 5px;
    padding: 6px 25px 6px 15px;
    outline: none;
    border: 1px solid lightgrey;
    cursor: pointer;
    background-color: #1D9ADD;
    color: white;
    margin-left: -45px;
    border-radius: 20px;
    height: 30px;
    vertical-align: middle;
    position: relative;
    width: 110px;
}
.submit-arrow {
    position: absolute;
    right: 10px;
    top: 8px;
}
.buttons button:active,
.buttons button:focus {
    border: 1px solid transparent;
    -webkit-box-shadow: 0 0 5px rgba(200, 200, 200, 1);
    -moz-box-shadow: 0 0 5px rgba(200, 200, 200, 1);
    box-shadow: 0 0 5px rgba(200, 200, 200, 1);
}

.answer {
    text-align: center;
    margin: 20px auto;
    /* max-width: 600px; */
    /* max-width: 600px; */

    width: 100%;
    /* display: table; */
    /* max-height: 415px; */
    max-height: calc(100dvh - 510px);
    height: 100%;
    overflow-y: auto;
    /* padding-bottom: 200px; */
}

.answer .answer-bubble,
.answer .question-bubble {
    background-color: white;
    -webkit-box-shadow: 0 0 5px rgba(200, 200, 200, 1);
    -moz-box-shadow: 0 0 5px rgba(200, 200, 200, 1);
    box-shadow: 0 0 5px rgba(200, 200, 200, 1);
    padding: 10px;
    width: calc(100% - 120px);
    /* min-width: 100px; */
    position: relative;
    border-radius: 5px;
    text-align: left;
    display: inline-table;
    vertical-align: middle;
    max-width: 600px;
}

.question-bubble {
    margin-left: 50px;
}

.answer-bubble {
    margin-right: 50px;
}

.answer .answer-bubble:after {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 0;
    height: 0;
    border: 5px solid transparent;
    border-left-color: white;
    border-right: 0;
    margin-top: -5px;
    margin-left: -4px;
    transform: rotate(180deg);
    max-height: 600px;
}

.answer .question-bubble:after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    width: 0;
    height: 0;
    border: 10px solid transparent;
    border-left-color: white;
    border-right: 0;
    margin-top: -11px;
    margin-right: -7px;
    /* transform: rotate(180deg); */
}

.answer .profile-icon {
    display: inline-block;
    width: 50px;
    vertical-align: middle;
}

.answer .profile-icon img {
    width: 25px;
    max-width: 100%;
}

.line-wrap {
    margin: 20px 0;
}

.error {
    color: red;
    text-align: center;
    margin-bottom: 20px;
}

li {
    text-align: left;
}

li::marker {
    font-weight: bold;
}


.conversation-list {
    display: block;
    width: 100%;
    box-sizing: border-box;
    margin: 10px auto;
    padding: 20px;
    max-width: 1200px;
}

.conversation {
    display: block;
    margin: 20px;
    padding: 10px;
    border: 1px solid lightgrey;
    border-radius: 10px;
}

.conversation-list select,
.conversation-list textarea {
    padding: 5px 10px;
}

.message {
    display: table;
    width: 100%;
    border: 1px dotted lightblue;
    border-radius: 10px;
    padding: 10px;
    box-sizing: border-box;
    margin: 10px 0;
}

.role,
.message-content {
    display: table-cell;
    vertical-align: top;
}

.role {
    width: 110px;
    text-align: center;

}

.conversation-list textarea {
    width: 100%;
    box-sizing: border-box;
    height: 150px;
    border: 1px solid turquoise;
    border-radius: 5px;
}

.blue-button {
    border: 0px;
    background: #007cd1;
    color: #fff;
    padding: 10px 25px;
    text-align: center;
    cursor: pointer;
    font-size: 16px;
    border-radius: 5px;
    min-width: 160px;
    white-space: nowrap;
}

.add-message {
    box-sizing: border-box;
    margin-bottom: 10px;
    text-align: right;
    display: table;
    width: 100%;
}

.message:has(.message-content textarea:active),
.message:has(.message-content textarea:focus) {
    border: 1px solid red;
}

.conversation:has(.message-content textarea:active),
.conversation:has(.message-content textarea:focus) {
    border: 1px solid orangered;
}

.bottom-div {
    position: fixed;
    bottom: 0;
    height: 75px;
    background-color: white;
    width: 100%;
    border-top: 1px solid grey;
}

.bottom-div div {
    vertical-align: middle;
    margin: auto 0;
}

.message-deleted {
    text-align: center;
}

/* The switch - the box around the slider */
.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

/* Hide default HTML checkbox */
.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

/* The slider */
.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}

input:checked+.slider {
    background-color: #2196F3;
}

input:focus+.slider {
    box-shadow: 0 0 1px #2196F3;
}

input:checked+.slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

#short {
    /* max-width: 400px; */
    /* width: fit-content;
     */

    /* max-height: 100px; */
    /* margin: 0 auto; */
    background-color: white;
    border-radius: 10px;
    padding: 10px;
    box-sizing: border-box;
    /* display: none; */
    min-height: 75px;
    display: grid;
    -webkit-box-shadow: 0 0 3px rgba(200, 200, 200, 1);
    -moz-box-shadow: 0 0 3px rgba(200, 200, 200, 1);
    box-shadow: 0 0 3px rgba(200, 200, 200, 1);
}

.thought {
    background-color: #fff;
    padding: 20px;
    border-radius: 30px;
    /* min-width: 40px;
    min-height: 40px; */
    position: relative;
    align-items: center;
    justify-content: center;
    text-align: center;

}

.thought:before,
.thought:after {
    /* content: "";
    background-color: #fff;
     border-radius: 50%; 
    display: block;
    position: absolute; */
}

.thought:before {
    /* width: 44px;
    height: 44px;
    top: -12px;
    right: 28px;
    box-shadow: -50px 30px 0 -12px #fff;
    z-index: -1;
    display: none; */
}

/*
.thought:after {
    bottom: 0px;
    left: -33px;
    width: 30px;
    height: 30px;
    box-shadow: -103px -46px 0 -8px #fff,
    -72px -26px 0 -6px #fff,
    -41px -11px 0 -3px #fff;
    z-index: 1;


}
*/
/* .thought:after {
    bottom: 0px;
    left: -33px;
    width: 0;
    height: 0;
     box-shadow: -103px -46px 0 -8px #fff,
    -72px -26px 0 -6px #fff,
    -41px -11px 0 -3px #fff; 
    z-index: 1;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent; 
    border-bottom: 15px solid #fff;

    display: none;

} */
.interact-logo img {
    width: 100px;
}

.interact {
    position: relative;
    width: 300px;
    margin: 0 auto;
    text-align: left;
    display: table;
    visibility: hidden;
}

.interact-logo {
    display: table-cell;
    width: 100px;
    vertical-align: middle;

}

.interact-wrap {
    display: table-cell;
    text-align: left;
    padding-left: 20px;
    width: calc(100% - 100px);
}

/* Right triangle placed top left flush. */
.tri-right.border.left-top:before {
    content: ' ';
    position: absolute;
    width: 0;
    height: 0;
    left: -40px;
    right: auto;
    top: -8px;
    bottom: auto;
    border: 1px solid;
    border-color: rgba(200, 200, 200, 1) transparent transparent transparent;
}

.tri-right.border.left-in:before {
    content: ' ';
    position: absolute;
    width: 0;
    height: 0;
    left: -28px;
    right: auto;
    top: 34px;
    bottom: auto;
    border: 14px solid;
    border-color: rgba(200, 200, 200, 1) rgba(200, 200, 200, 1) transparent transparent;
}

/* Right triangle, left side slightly down */
/* .tri-right.border.left-in:before {
    content: ' ';
    position: absolute;
    width: 0;
    height: 0;
    left: -40px;
    right: auto;
    top: 30px;
    bottom: auto;
    border: 20px solid;
    border-color: #666 #666 transparent transparent;
} */

.tri-right.left-in:after {
    content: ' ';
    position: absolute;
    width: 0;
    height: 0;
    left: -26px;
    right: auto;
    top: 35px;
    bottom: auto;
    border: 18px solid;
    border-color: #fff #fff transparent transparent;
}


.border {
    border: 1px solid rgba(200, 200, 200, 1);
}
.login-box {
    height: 350px;
    padding: 20px;
    box-sizing: border-box;
    width: 350px;
    -webkit-box-shadow: 0 0 5px rgba(200, 200, 200, 1);
    -moz-box-shadow: 0 0 5px rgba(200, 200, 200, 1);
    box-shadow: 0 0 5px rgba(200, 200, 200, 1);
    background-color: white;
    border-radius: 10px;
    margin: 0 auto;
    /* display: grid; */
    text-align: left;
}
.login {
    margin: 0 auto;
    text-align: center;
}
.login img {
    width: 350px;
}
.login-cell {
    text-align: left;
    width: 100%;
    box-sizing: border-box;
    margin: 20px 0;
}
.login-cell span {
    display: block;
    color: grey;
}
.login-cell input {
    padding: 5px 10px;
    border-radius: 5px;
    box-sizing: border-box;
    width: 100%;
    -webkit-box-shadow: 0 0 5px rgba(200, 200, 200, 1);
    -moz-box-shadow: 0 0 5px rgba(200, 200, 200, 1);
    box-shadow: 0 0 5px rgba(200, 200, 200, 1);
    border: 1px solid #cacaca;
    /* outline: 1px solid black; */
}
.login-cell.submit {
    text-align: center;
    margin-top: 40px;
}
.login-cell.submit button {
    width: 100%;
    box-sizing: border-box;
}
.login-cell input:active, .login-cell input:focus, .login-cell input:hover {
    border: 1px solid #3faddc;
    outline: none;
    -webkit-box-shadow: 0 0 5px rgba(63, 173, 220, 1);
    -moz-box-shadow: 0 0 5px rgba(63, 173, 220, 1);
    box-shadow: 0 0 5px rgba(63, 173, 220, 1);
}
.login-title {
    font-weight: bold;
    font-size: 34px;
    margin-bottom: 10px;
}
.login-sub-title {
    font-size: 13px;
    font-style: italic;
    margin-bottom: 8px;
}
.login-cell:first-of-type {
    margin-bottom: 8px;
}
.login-error {
    color: red;
    font-size: 13px;
    text-align: center;
}
#sign-out {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    font-size: 20px;
    z-index: 9;
}
.expand-chart {
    text-align: right;
    color: black;
    text-decoration: underline;
    font-size: 12px;
}
.bottom {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translate(-50%, 0);
}
@media(max-width: 1023px) {


    .interact {
        width: 90%;
        max-width: 450px;
        left: 0;

    }
}
@media(max-width: 863px) {
    .answer-bubble.expand::after {
        top: 0;
        left:50%;
        transform: rotate(-81deg);
    }
    .answer-bubble.expand {
        margin-right: 0px;
    }
}
@media(max-width: 550px) {
    .logo {
        width: 400px;
    }
    .answer {
        max-height: calc(100dvh - 460px);
    }
}
@media(max-width: 475px) {
    .search {
        width: calc(100% - 50px);
    }
    .bottom {
        width: 100%;
    }
}
@media(max-width: 425px) {
    .logo {
        width: 350px;
    }
    .answer {
        max-height: calc(100dvh - 430px);
    }
}</pre></body></html>