#wp-sales-booster-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 9999;
    display: inline-block;
    padding: 0;
    border-radius: 6px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    animation: slideIn 0.5s ease-out;
    background: transparent;
    color: #ffffff !important;
}

#wp-sales-booster-popup .wp-sales-booster-content {
    position: relative;
    padding: 10px 12px;
    display: inline-block;
}

#wp-sales-booster-popup .wp-sales-booster-close {
    position: absolute;
    top: 4px;
    right: 4px;
    font-size: 14px;
    line-height: 1;
    padding: 3px;
    cursor: pointer;
    z-index: 2;
    color: rgba(255, 255, 255, 0.8);
    background: transparent;
    border: none;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

#wp-sales-booster-popup .wp-sales-booster-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

#wp-sales-booster-popup .wp-sales-booster-message {
    margin: 0;
    padding-right: 16px;
    line-height: 1.3;
    color: #ffffff !important;
    display: inline-block;
}

#wp-sales-booster-popup .wp-sales-booster-name {
    font-weight: 600;
    margin-bottom: 4px;
    display: block;
}

#wp-sales-booster-popup .wp-sales-booster-action-product {
    white-space: nowrap;
    display: block;
}

#wp-sales-booster-popup .wp-sales-booster-action-product a {
    color: inherit;
    text-decoration: none;
}

#wp-sales-booster-popup .wp-sales-booster-button-container {
    margin-top: 6px;
    display: block;
    text-align: center;
}

#wp-sales-booster-popup .wp-sales-booster-button {
    display: inline-block;
    padding: 6px 12px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.2s ease;
    border: none;
    text-align: center;
}

#wp-sales-booster-popup .wp-sales-booster-button:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

/* Animation refinements */
@keyframes slideIn {
    from {
        transform: translateY(15px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideOut {
    from {
        transform: translateY(0);
        opacity: 1;
    }
    to {
        transform: translateY(15px);
        opacity: 0;
    }
}
 