/*Errores del sistema*/
.chat {
    .center {
        .error {
            display: flex;
            gap: 10px;

            .texts {
                display: flex;
                flex-direction: column;
                color: cyan;
                background-color: rgba(17, 25, 40, 0.3);
                border-top-right-radius: 10px;
                border-bottom-left-radius: 10px;
                border-bottom-right-radius: 10px;
                padding: 10px;

                p {
                    padding: 10px;
                }

                span{
                    font-style: italic;
                }
            }

            .logo {
                width: 30px;
                height: 30px;
                border-radius: 50%;
                object-fit: cover;
                background-color: blue;
                text-align: center;
                display: flex;
                justify-content: center;
                align-items: center;
            }
        }
    }
}
