.rpn-notification {
    position: fixed;
    bottom: var(--rpn-bottom-distance, 20px);
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    padding: 10px;
    max-width: 300px;
    z-index: 9999;
    display: flex;
    align-items: center;
    animation: slideIn 0.5s ease-in-out;
}

.rpn-content {
    display: flex;
    align-items: center;
}

.rpn-content img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    margin-right: 10px;
    border-radius: 4px;
}

.rpn-text p {
    margin: 0;
    font-size: 14px;
    line-height: 1.2;
}

.rpn-text p:first-child {
    font-weight: bold;
    color: #333;
}

.rpn-close {
    position: absolute;
    top: 5px;
    right: 10px;
    cursor: pointer;
    font-size: 18px;
    color: #888;
}

.rpn-close:hover {
    color: #000;
}

.left {
    left: 20px;
}

.right {
    right: 20px;
}

@keyframes slideIn {
    from { transform: translateX(-100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes slideOut {
    from { transform: translateX(0); opacity: 1; }
    to { transform: translateX(-100%); opacity: 0; }
}