.wbl-container {
    position: fixed;
    cursor: pointer;
    z-index: 999999;
    transition: transform 0.3s ease;
}

.wbl-container:hover {
    transform: scale(1.1);
}

.wbl-container.wbl-clicked {
    transform: scale(0.9);
}

/* Position classes */
.wbl-bottom-right {
    bottom: 20px;
    right: 20px;
}

.wbl-bottom-left {
    bottom: 20px;
    left: 20px;
}

.wbl-top-right {
    top: 20px;
    right: 20px;
}

.wbl-top-left {
    top: 20px;
    left: 20px;
}

/* Animation container */
#wbl-animation {
    width: 100%;
    height: 100%;
    pointer-events: none;
}

/* Clickable overlay */
.wbl-clickable {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    border-radius: 50%;
}

/* Tooltip - base styles */
.wbl-tooltip {
    position: absolute;
    background: #25D366;
    color: white;
    padding: 8px 15px;
    border-radius: 25px;
    font-size: 14px;
    white-space: nowrap;
    display: none;
    z-index: 20;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    pointer-events: none;
    font-weight: 500;
}

/* Tooltip arrow */
.wbl-tooltip::after {
    content: '';
    position: absolute;
    border-width: 8px;
    border-style: solid;
}

.wbl-bottom-right .wbl-tooltip::after,
.wbl-bottom-left .wbl-tooltip::after {
    bottom: -16px;
    border-color: #25D366 transparent transparent transparent;
}

.wbl-top-right .wbl-tooltip::after,
.wbl-top-left .wbl-tooltip::after {
    top: -16px;
    border-color: transparent transparent #25D366 transparent;
}

.wbl-bottom-right .wbl-tooltip::after {
    right: 20px;
}

.wbl-bottom-left .wbl-tooltip::after {
    left: 20px;
}

.wbl-top-right .wbl-tooltip::after {
    right: 20px;
}

.wbl-top-left .wbl-tooltip::after {
    left: 20px;
}

/* Pulse animation for attention */
@keyframes wbl-pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.wbl-pulse {
    animation: wbl-pulse 2s infinite;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .wbl-container {
        width: 50px !important;
        height: 50px !important;
    }
    
    .wbl-tooltip {
        display: none !important;
    }
}