/* Estilo personalizado para la barra de desplazamiento */
#wozovo_av_window::-webkit-scrollbar {
    width: 10px; /* Anchura de la barra */
}

/* Estilo del pulgar (scroll) */
#wozovo_av_window::-webkit-scrollbar-thumb {
    background: #83b0e8; /* Color del pulgar */
    border-radius: 5px; /* Radio de borde del pulgar */
}

/* Estilo del pulgar al pasar el ratón */
#wozovo_av_window::-webkit-scrollbar-thumb:hover {
    background: #1173ed; /* Color del pulgar al pasar el ratón */
}

#wozovo_av_content{
    position:fixed;
    bottom: 0px;
    left: calc(100% - 380px);
}

#wozovo_av_header{
    height: 40px;
    width:310px;
    background-color: #1173ed;
    display: inline-flex;
    padding:10px;
}

#wozovo_av_perfil{
    width: 40px;
    height: 40px;
    background-color: white;
    border-radius: 50%;
}

#wozovo_av_nombre{
    color: white;
    font-family: 'Arial';
    font-weight: bold;
    margin: auto 0 auto 10px;
}



#wozovo_av_window{
    width: 290px;
    height:450px;
    z-index: 9999999;
    background-color: white;
    padding: 20px;
    overflow-y: scroll;
    -webkit-box-shadow: 0px 8px 11px 0px rgba(0,0,0,0.22);
    -moz-box-shadow: 0px 8px 11px 0px rgba(0,0,0,0.22);
    box-shadow: 0px 8px 11px 0px rgba(0,0,0,0.22);
}

.wozovo_av_message{
    float:left;
    width:calc(80% - 20px);
    border-radius: 15px;
    font-family: 'Arial';
    background-color: #95bbea;
    padding:10px;
    margin:5px;
}

.wozovo_av_message_option{
    float:right;
    font-family: 'Arial';
    width:calc(80% - 20px);
    border-radius: 15px;
    border-style: solid;
    border-color: #1173ed;
    border-width: 1px;
    padding:10px;
    margin:5px;
    -webkit-box-shadow: 0px 3px 2px 0px rgba(0,0,0,0.22);
    -moz-box-shadow: 0px 3px 2px 0px rgba(0,0,0,0.22);
    box-shadow: 0px 3px 2px 0px rgba(0,0,0,0.22);
}

.wozovo_av_message_option:hover{
    cursor: pointer;
}