.floating-line {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 1000;
    transition: all 0.3s ease;
    background: #06C755;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.floating-line img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.floating-line:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
} 