/*
 * Social Proof Generator Styles
 * Copyright (C) 2025 Muhamad Dendi Purwanto
 * Licensed under the GNU General Public License v2 or later
 * License URI: https://www.gnu.org/licenses/gpl-2.0.html
 */

.social-proof-popup {
    color: #333;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    z-index: 9999;
    display: none;
    max-width: 300px;
    align-items: center;
}

.social-proof-popup img.socproofgen-product-image {
    width: 50px;
    height: 50px;
    margin-right: 10px;
    border-radius: 5px;
    object-fit: cover;
}

.socproofgen-content p {
    margin: 0;
    font-size: 14px;
    line-height: 1.4;
}

.socproofgen-content p strong {
    font-weight: bold;
}

.socproofgen-no-image {
    margin-right: 10px;
    font-style: italic;
    color: #999;
}

@media (max-width: 768px) {
    .social-proof-popup {
        max-width: 90%;
        padding: 8px;
    }
    .social-proof-popup img.socproofgen-product-image {
        width: 40px;
        height: 40px;
    }
    .socproofgen-content p {
        font-size: 12px;
    }
}