html, body {
    width: 100%;
    height: 100%;
    margin: 0;
}

body {
    background-color: #EFF5F7 !important;
    /* overflow: hidden; */
    padding-top: 30px;
}

body, textarea {
    font-family: 'Roboto', sans-serif;
}
.tox-tinymce-aux,
.tox-statusbar__branding{
    display: none !important;
}
#message-input {
    border-radius: 10px;
    box-shadow: 2px 2px 5px #888888;
}

#chat-messages {
    height: calc(100vh - 360px);
    overflow: auto;
    width: 100%;
    text-align: left;
    margin: 0 auto;
    max-width: 1000px;
    border: dashed 3px #e5e5e5;
    border-radius: 20px;
    padding: 20px;
}

.chat-message {
    border-radius: 10px;
    padding: 15px;
    margin: 10px 0;
    line-height: 1.5em;
}
.chat-message > p:last-child{
    margin-bottom: 0;
}

.incoming-message {
    color: #2c2c2c;
    background-color: #fff;
}

.outgoing-message {
    color: #2c2c2c;
    background-color: #fff;
}

#message-input {
    margin: 30px auto;
    resize: none;
    border: none;
    color: #2c2c2c;
    background-color: #fff;
    outline: none;
    padding: 15px;
    font-size: 1.1em;
    width: 100%;
    max-width: 700px;
    display: table;
}
body .container{
    max-width: 1024px;
}

h1 {
    color: #188FD1;
    text-align: center;
    margin-top: 0;
}

code {
    border-radius: 10px;
    font-size: 1.1em;
    margin: 5px;
}

#cursor {
    width: 5px;
    height: 20px;
    background-color: #000;
    display: inline-block;
    animation: blink 1s infinite;
}
.logo{
    display: flex;
    justify-content: center;
    margin-bottom: 15px;
}
.was-validated .tox-tinymce.invalid{
    border-color: var(--bs-form-invalid-border-color);
    padding-right: calc(1.5em + 0.75rem);
    border-width: 1px;
}
.open-twitter-modal{
    margin-left: 15px;
}
@keyframes blink {
    0% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

a {
    color: #000;
}
