@keyframes floatUp {
    0% { transform: translateY(30px); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}

#ppn-icon {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #2C3E50;
    color: #fff;
    padding: 12px 14px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    z-index: 9999;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    animation: floatUp 1.2s ease-out;
    transition: background 0.3s ease;
}
#ppn-icon:hover {
    background: #34495E;
}

#ppn-wrapper {
    display: none;
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: auto;
    max-width: 90%;
    background: #fff;
    box-shadow: 0 0 15px rgba(0,0,0,0.15);
    padding: 12px 18px;
    border-radius: 8px;
    z-index: 10000;
    font-family: Arial, sans-serif;
    animation: floatUp 0.8s ease-out;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}
@media(max-width: 600px) {
    #ppn-wrapper {
        flex-direction: column;
        align-items: flex-start;
        max-width: 95%;
        bottom: 100px;
        right: 2.5%;
    }
}

#ppn-wrapper p {
    margin: 0;
    font-size: 15px;
    color: #333;
}

#ppn-wrapper a {
    color: #1ABC9C;
    text-decoration: underline;
    font-weight: bold;
}

#ppn-wrapper button {
    background: #1ABC9C;
    color: #fff;
    border: none;
    padding: 8px 14px;
    font-size: 14px;
    border-radius: 5px;
    cursor: pointer;
}
#ppn-wrapper button:hover {
    background: #16A085;
}
.oc-align-right {
    text-align: right;
}
.oc-align-left {
    text-align: left;
}