

body {
    display: flex;
    align-items: center;
    height: 100vh;
    margin: 0px;
    padding: 0px;
    outline: none;
    text-decoration: none;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.header_box_r {
    display: none;
}
#app {
        align-items: center;
    padding: 0px;
    width: 90%;
    max-width: 400px;
    height: 93%;
    max-height: fit-content;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: none;
}
#app>div.bg-white {
    background: #fff;
    border-radius: 0px;
    border: none;
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
}
#app>div>h2 {
    margin-top: 0px;
}
#app>div>form {
    padding: 30px 20px;
    background: #fff;
    border-radius: 0px 0px 13px 13px;
}
#app .header_box {
    background: #fff;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #eee;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 1px 5px;
    border-radius: 13px 13px 0px 0px;
    z-index: 1;
}
#app .header_box_l img {
    border-right: none;
    padding-left: 0px;
    margin-right: 0px;
    padding-right: 0px;
    height: 30px;
}
#app>div>form center button {
    cursor: pointer;
    background: #00b2b2;
    transition: background 0.18s, transform 0.15s;
    letter-spacing: 0.01em;
    font-family: 'Open sans', sans-serif;
    box-shadow: #00b2b26b 0px 2px 5px;
    border-radius: 7px;
    margin-top: 20px;
    font-size: 15px;
}
.form-group input {
    padding: 8px 10px;
    border-radius: 5px;
    font-family: 'Open sans', sans-serif;
}
.form-group label {
    font-size: 14px;
}
.form-group input:focus,
.form-group input:visited,
.input-group textarea:focus,
.input-group textarea:visited {
    border: 1px solid #99e0e0;
    outline: 1px solid #99e0e0;
}
#app .message-icon {
    width: 35px;
    height: 35px;
}
#app .chat-window {
    overflow-y: auto;
    padding: 15px 15px 20px;
    background: #f5f9fb;
    flex-direction: column;
    gap: 12px;
    display: flex;
    border: none;
    border-bottom: 1px solid #eef;
    min-height: auto;
    max-height: 480px;
    height: 50vh;
}
#app .chat-window::-webkit-scrollbar { width: 4px; }
#app .chat-window::-webkit-scrollbar-thumb { background: #bdbdbd; border-radius: 4px; }
.bot-message .message-content,
.message-content {
    font-size: 14px;
    line-height: 18px;
    margin-bottom: 7px;
}
.bot-message .message-content>a {
    font-size: 13px;
}
.bot-message > div.note {
    padding: 10px 15px 12px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.07);
    border-radius: 3px 10px 10px 10px;
}
.user-message > div.note {
    padding: 10px 15px 12px;
    border-radius: 10px 10px 3px 10px;
}
.chat-window .message {
    padding: 5px;
    margin-bottom: 0px;
}
.chat-window .user-message {
    background: none;
    margin-bottom: 0px;
}
.user-message > div.note {
    background: #99e0e0;
    color: #000;
    width: auto;
}
.user-message > div.note .timestamp,
.timestamp {
    text-align: left;
    color: #888;
    font-size: 11px;
    line-height: 13px;
}
.vote-buttons {
    bottom: -15px;
    margin-left: 0px;
}
.vote-button {
    padding: 0px;
    margin-left: 8px;
}
.vote-button img {
    width: 23px;
}
.input-group {
    padding: 15px 20px;
    align-items: flex-end;
}
.input-group textarea {
    flex-grow: 1;
    resize: none;
    min-height: 75px;
    max-height: 150px;
    border: 1px solid #00b2b29e;
    border-radius: 12px;
    padding: 10px 0px 10px 15px;
    font-family: 'Open Sans', sans-serif;
    font-size: 13px;
    line-height: 18px;
    overflow-y: auto;
    width: 100%;
    box-sizing: border-box;
    padding-right: 50px;
    word-break: break-word;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
}
.input-group textarea::placeholder {
    color: #949598;
    line-height: 16px;
    font-size: 13px;
    font-family: 'Open sans', sans-serif;
}
.input-group button {
    top: 75%;
    transform: translateY(-100%);
}
.input-group button svg {
    width: 18px;
    height: 18px;
    fill: #fff;
}
.input-group button svg>path {
    fill: #00b2b2 !important;
}
.footer-warning {
    font-size: 12px;
    padding: 15px 20px;
    padding-top: 0px;
    background: none;
    line-height: 16px;
}
.footer-warning>strong {
    font-weight: 600;
    color: #231f20;
}
.protected-recaptcha {
    font-size: 10px;
    color: #58595b;
    text-align: center;
    padding: 12px 20px 15px;
    background: #99e0e0 !important;
    line-height: 12px;
    font-style: italic;
    border: none !important;
}
.protected-recaptcha>a {
    color: #0000ff;
    font-style: normal;
    font-weight: 600;
    text-decoration: underline;
}

@media (max-width: 768px) {
    #app {
        margin: auto;
    }
}

@media (max-width: 375px) {
    .input-group textarea {
        min-height: 88px;
    }
}