div#sac-output {
    box-sizing: border-box;
    /*float: left;*/
    width: 100%;
    height: 400px;
    overflow: auto;
    margin: 0;
    /*padding: 20px;*/
    border-radius: 2px;
    color: #eee;
    background-color: #333;
}

div#sac-panel {
    box-sizing: border-box;
    /*float: right;*/
    width: 100%;
    padding-top: 5px;
}

div#sac-user-info {
    display: none;
}

textarea#sac_chat {
    width: 100%;       /* Ocupa todo el ancho de su contenedor */
    max-width: 700px;  /* Límite opcional de expansión horizontal */
    height: 150px;     /* Altura inicial fija */
    padding: 10px;     /* Espacio interno para que el texto no toque los bordes */
    box-sizing: border-box; /* Crucial para que el padding no aumente el tamaño total */
}

a#btn-enviar {
    /*float: right;*/
    display: none;
}

a#btn-enviar a#btn-adjuntar {
    text-decoration: none!important;
}

span.required, span.text-danger {
    color: red;
}