/**
 * Product Verifier Frontend Styles
 * Base styles - most styles are inline in the template
 */

/* Animation keyframes */
@keyframes pv-spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes pv-fade-in {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pv-stamp-animation {
    0% {
        opacity: 0;
        transform: scale(2) rotate(-10deg);
    }
    50% {
        transform: scale(0.9) rotate(5deg);
    }
    100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

/* Error message styling */
.pv-error-message {
    background: #fee2e2;
    color: #dc2626;
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 15px;
    font-size: 14px;
}
