.wa-sticky-wrapper {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 99999;
}

.wa-circle-row {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.wa-circle {
    background-color: #25d366;
    border-radius: 50%;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    position: relative;
    text-decoration: none;
    opacity: 1;
    z-index: 99999;
}

.wa-circle img {
    width: 32px;
    height: 32px;
    background-color: white;
    border-radius: 50%;
}

.tooltip-text {
    visibility: hidden;
    background-color: black;
    color: white;
    padding: 6px 10px;
    border-radius: 6px;
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: opacity 0.3s;
    font-size: 13px;
    white-space: nowrap;
    z-index: 10000;
}

.tooltip:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
}
    