#loaderOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Fondo semitransparente */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999; /* Asegura que esté por encima de todo */
}

/* Estilo del loader circular */
.loader {
    border: 8px solid #f3f3f3; /* Color gris claro */
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 1s linear infinite; /* Animación de giro */
}

/* Animación de giro */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Bloquear la interacción detrás del overlay */
body.no-scroll {
    overflow: hidden;
}

.rolAnswer {
    background-color: #f3f3f3;
    border-radius: 10px;
    padding: 10px;
    word-wrap: break-word; /* Ajusta texto largo automáticamente */
    white-space: pre-wrap; /* Respeta saltos de línea y permite ajuste de palabras */
}

.rolAnswer h3 {
    font-size: 1.3rem;
    padding-bottom: 5px;
    padding-top: 15px;
    margin: 0px;
}

.rolQuestion
{
    color: white;
    border-radius: 10px;
    padding: 10px;
    word-wrap: break-word; /* Ajusta texto largo automáticamente */
    white-space: pre-wrap; /* Respeta saltos de línea y permite ajuste de palabras */
}

.usr {
    font-size: 0px;
    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
{
background: #f3903c;
}

#borrarChat
{
    background: #f3903c;
}