#whatsapp-float-chat {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
}

#chat-icon {
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    transition: transform 0.2s;
}

#chat-icon:hover {
    transform: scale(1.1);
}
