.raselbot-whatsapp-widget {
    position: fixed;
    bottom: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.raselbot-whatsapp-button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
    cursor: pointer;
}

.raselbot-whatsapp-button:hover {
    transform: scale(1.1);
}

.raselbot-whatsapp-widget.right {
    right: 20px;
}

.raselbot-whatsapp-widget.left {
    left: 20px;
}

.raselbot-whatsapp-icon {
    width: 32px;
    height: 32px;
    display: block;
    margin: 0;
    padding: 0;
}

.raselbot-whatsapp-text {
    background: white;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 14px;
    margin-bottom: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    color: #333;
    max-width: 200px;
    text-align: center;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.raselbot-whatsapp-widget:hover .raselbot-whatsapp-text {
    opacity: 1;
    transform: translateY(0);
}
