
#psp-popup {
    position: fixed;
    background: #fff;
    border: 1px solid #ddd;
    padding: 15px 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    font-size: 16px;
    direction: rtl;
    font-family: 'Tajawal', sans-serif;
    z-index: 9999;
    border-radius: 10px;
    max-width: 320px;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    animation: shake-icon 1s infinite;
}
.bottom-left { bottom: 0; left: 0; }
.bottom-right { bottom: 0; right: 0; }
.top-left { top: 0; left: 0; }
.top-right { top: 0; right: 0; }

#psp-popup strong { font-weight: bold; }

@keyframes shake-icon {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}

@media (max-width: 600px) {
    #psp-popup {
        font-size: 14px;
        max-width: 90%;
        left: 5% !important;
        right: auto !important;
    }
}
