.notification-container {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 10000;
}

.purchase-popup {
    background: white;
    border: 1px solid #10b981;
    border-radius: 8px;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    margin-top: 10px;
    animation: slideIn 0.5s ease-out;
    max-width: 240px;
}

.popup-check {
    width: 24px;
    height: 24px;
    background: #10b981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 12px;
    flex-shrink: 0;
}

.popup-content {
    display: flex;
    flex-direction: column;
}

.popup-name {
    font-weight: 700;
    color: #0B1C2D;
    font-size: 11px;
    line-height: 1.2;
}

.popup-action {
    color: #4b5563;
    font-size: 11px;
    line-height: 1.2;
}

.popup-meta {
    color: #9ca3af;
    font-size: 9px;
    text-transform: uppercase;
    font-weight: 600;
    margin-top: 2px;
}

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

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