
#zinzino-balloon {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 9999;
    cursor: pointer;
    transition: transform 0.3s ease;
}
#zinzino-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-shadow: 0 2px 6px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}
#zinzino-avatar:hover {
    transform: scale(1.1);
}
#zinzino-avatar:focus,
.zinzino-close:focus {
    outline: 3px solid #005fcc;
}

#zinzino-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 300px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
    z-index: 9999;
    padding: 20px;
    font-family: sans-serif;
    opacity: 0;
    transition: opacity 0.7s ease;
    display: none;
}

#zinzino-popup.visible {
    display: block;
    opacity: 1;
}

.zinzino-popup-content {
    text-align: center;
}

.zinzino-profile {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    margin-top: -50px;
    margin-bottom: 10px;
    border: 3px solid white;
    box-shadow: 0 0 0 3px #fff;
}

.zinzino-close {
    position: absolute;
    right: 10px;
    top: 10px;
    font-size: 18px;
    cursor: pointer;
}
