/* ============================
   ETL Chat Avatar – végleges CSS
   ============================ */

/* A chat header avatar képe */
#etlChatAvatar {
    width: 45px !important;
    height: 45px !important;
    border-radius: 50% !important;
    object-fit: cover !important;
    display: inline-block;
    flex-shrink: 0;

    /* vizuális minőség */
    border: 2px solid #ffffff;
    box-shadow: 0 0 6px rgba(0,0,0,0.18);

    /* pozíció */
    margin-right: 2px;
    background-color: #fff; /* sötét header esetén */
}

/* Ha fallback DIV-et használnánk */
.etl-chat-avatar-bg {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    border: 2px solid #ffffff;
    box-shadow: 0 0 6px rgba(0,0,0,0.18);
    margin-right: 2px;
}
