.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background-color: #25D366;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1000;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3);
}
.whatsapp-float i {
    font-size: 24px; 
    color: white;    
    display: inline-block;
}


.whatsapp-box {
    position: fixed;
    bottom: 40px;
    left: 80px;
    width: 200px;
    background-color: rgba(0, 0, 0, 0.7);
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 1001;
}

.whatsapp-box .message-option {
    padding: 10px;
    cursor: pointer;
    font-size: 14px;
    color: #ffffff;
    border-bottom: 1px solid #ddd;
}

.whatsapp-box .message-option:hover {
    background-color: #25D366;
}

.whatsapp-box .message-option:last-child {
    border-bottom: none;
}