#mwp-wrapper { 
    position: fixed; 
    bottom: 20px; 
    right: 20px; 
    z-index: 9999; 
    font-family: sans-serif;
}

#mwp-main { 
    background: #25d366; 
    color: #fff; 
    padding: 0 20px;
    height: 55px; 
    border-radius: 50px; /* Lamba button banane ke liye */
    display: flex; 
    align-items: center; 
    justify-content: center; 
    cursor: pointer; 
    box-shadow: 0 4px 12px rgba(0,0,0,0.3); 
    transition: transform 0.2s;
}

#mwp-main:hover { transform: scale(1.05); }

#mwp-main .dashicons { 
    font-size: 28px; 
    margin-right: 10px; /* Icon aur text ke beech gap */
    width: 28px;
    height: 28px;
}

#mwp-main .mwp-text {
    font-weight: 600;
    font-size: 16px;
    white-space: nowrap;
}

#mwp-menu { 
    display: none; 
    flex-direction: column; 
    align-items: flex-end; /* Menu ko right side align karne ke liye */
    gap: 12px; 
    margin-bottom: 12px; 
}

#mwp-menu.show { display: flex; }

.mwp-item { 
    width: 50px; 
    height: 50px; 
    border-radius: 50%; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    color: #fff; 
    text-decoration: none; 
    box-shadow: 0 4px 10px rgba(0,0,0,0.2); 
}

.whatsapp { background: #25d366; }
.call { background: #007bff; }
