#loaderOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.loader {
    border: 8px solid #f3f3f3;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

body.no-scroll {
    overflow: hidden;
}

.rolAnswer {
    background-color: #f3f3f3;
    border-radius: 10px;
    padding: 10px;
    word-wrap: break-word;
    white-space: normal;
    line-height: 1.5;
}

.rolAnswer h1,
.rolAnswer h2,
.rolAnswer h3,
.rolAnswer h4,
.rolAnswer h5,
.rolAnswer h6 {
    margin: 0.9rem 0 0.45rem;
    line-height: 1.2;
}

.rolAnswer h1 {
    font-size: 1.9rem;
}

.rolAnswer h2 {
    font-size: 1.55rem;
}

.rolAnswer h3 {
    font-size: 1.3rem;
}

.rolAnswer p,
.rolAnswer ul,
.rolAnswer ol {
    margin: 0 0 0.75rem;
}

.rolQuestion {
    color: white;
    border-radius: 10px;
    padding: 10px;
    word-wrap: break-word;
    white-space: pre-wrap;
}

.usr {
    font-size: 0;
    background-position: 3px 3px !important;
    background-size: 25px 25px !important;
    display: block;
    float: right;
    height: 32px;
    width: 32px;
    border-radius: 50px;
    margin-left: 5px;
}

.Caja--user {
    margin-top: 10px;
}

#enviarPregunta,
#borrarChat {
    background: #f3903c;
}

div#chatbotMessages h3 {
    font-size: 1rem !important;
}

.chatbot-table-wrapper {
    overflow-x: auto;
    margin: 12px 0;
}

.chatbot-markdown-table {
    width: 100%;
    border-collapse: collapse;
    background-color: #ffffff;
}

.chatbot-markdown-table th,
.chatbot-markdown-table td {
    border: 1px solid #d7d7d7;
    padding: 8px 10px;
    text-align: left;
    vertical-align: top;
}

.chatbot-markdown-table th {
    background-color: #f7f7f7;
    font-weight: 600;
}
