/* Main floating button styles */
.floating {
    position: fixed;
    bottom: 80px;
    left: 40px;
    width: 80px;
    height: 80px;
    background-color: #25d366;
    border-radius: 50%;
    text-align: center;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    transition: transform 0.3s ease;
}

/* Container for the WhatsApp icon to improve alignment */
.icon-container {
    position: relative; /* Ensures proper stacking and alignment */
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* WhatsApp icon specific styles */
.whatsapp-icon {
    color: #fff;
    font-size: 40px; /* Adjust based on your preference */
}

/* Help text styling */
.help-text {
    margin-left: 20px;
    width: 200px;
    position: absolute;
    bottom: 110%; /* Adjust to position the text above the icon */
    left: 50%;
    transform: translateX(-50%);
    background-color: #333;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px 10px;
    font-size: 14px;
    box-shadow: 1px 1px 2px #666;
    opacity: 0.9;
}

/* Hover effect for the floating button */
.floating:hover {
    transform: translateY(-5px);
}
