#fpp-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: #fff;
    padding: 14px 18px;
    border-radius: 12px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.15);
    display: none;
    z-index: 99999;
    font-size: 14px;
    font-family: Arial, sans-serif;
}

#fpp-popup .line1 {
    font-weight: bold;
    margin-bottom: 3px;
}

#fpp-popup .line2 {
    color: #777;
    font-size: 12px;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
