
#smartwhatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
}
.smartwhatsapp-icon {
    background: #25D366;
    color: white;
    padding: 12px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 24px;
}
.smartwhatsapp-popup {
    display: none;
    position: absolute;
    bottom: 60px;
    right: 0;
    background: white;
    border: 1px solid #ccc;
    padding: 10px;
    border-radius: 6px;
}
#smartwhatsapp-button:hover .smartwhatsapp-popup {
    display: block;
}
.smartwhatsapp-popup a {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    text-decoration: none;
    color: black;
}
.smartwhatsapp-popup img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    margin-right: 10px;
}
