
#pf-notification-container {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 99999;
    max-width: 300px;
    font-family: Arial, sans-serif;
}

.pf-notification-box {
    display: flex;
    align-items: center;
    color: white;
    background: #9b59b6;
    padding: 12px 14px;
    border-radius: 8px;
    margin-bottom: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    animation: fadeIn 0.5s ease-in-out;
    position: relative;
}

.pf-icon {
    font-size: 28px;
    margin-right: 12px;
}

.pf-content {
    flex: 1;
    font-size: 14px;
}

.pf-close-btn {
    position: absolute;
    top: 6px;
    right: 10px;
    cursor: pointer;
    font-size: 16px;
}
